Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have been looking for an image editing SDK for Android, something that includes an option for custom stickers. A good example would be the Adobe Creative SDK (previously the Aviary SDK), though the current build only supports customizing which features to include, with no option to add your own stickers. Another good example would be the Fotor SDK, which did support adding your own stickers, but it is now under development, with no way of accessing the previous version (that I know of).
There are a few more editing SDKs available, including the PhotoEditor SDK by img.ly and CLImageEditor, but only for iOS. If anyone knows of an Android editing SDK with a sticker feature, or if someone could point me toward some decent resources on the subject (which I have not been able to find) so I can create my own, it would be greatly appreciated.
The Img.ly PhotoEditor SDK is now also available for Android. You can also easily add your own assets like stickers and fonts.
You can get a reference to the stickers array like so:
ArrayList<ImageStickerConfig> stickers = PhotoEditorSdkConfig.getStickerConfig();
For the complete example consult the docs
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Well i am trying to find a good software which helps me in coding. Hassle free and a bit helpy?
As of now eclipse is generally used by most of the people around the world. You can download the same either from eclipse official site and download the plugin for the same
Or you can use Android studio for the same. To do the same you can download it from the official android developers site https://developer.android.com/sdk/index.html .
Do keep in mind that after some time, android studio may be used more by people as it is developed only for android development and also google is stopping to provide support for eclipse.
One more thing that, once you download the software, you will need to install sdk's for the api level for which you want to develop
All the support for development for android is available at the above mentioned link. Information about all the libraries are also available at the same. For more resources, you can always use youtube for the possible leacture series and also use stackoverflow and codata whenever you are stuck.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have created one android project,i would like to upload my project on market.But before that i need to create a document for my project right?
Can any one tell me is there any tools to create a document for android project?
Here i am using Ubunto 12.
I couldn't find any tools so far through Google as per my knowledge.
Suggestions please
Thanks for your precious time!..
If you're talking about the page of your application on Google Play, it's generated from the information you gave in the Developer Console when publishing your application.
You can provide a title, a description and some graphic assets (screenshots, icon, etc.). The description is plain text with little html markup support, you won't find a better tool than the integrated text editor to write it. There's no official list of the available formatting features, but see this question for an extensive user feedback.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
This might sound like a duplicate question but trust me its not.
I have an Android app. It contains WebView to display webpages. Now I am planning to go live with the app on ios too. Now having two different codes and maintaining them is a difficult task.
Is there a way I can develop app in both the platforms with minimum maintenance issues. With minimum maintenance I mean more reusable code that can be use on both the platforms.
I have heard that it can be done using Chromium Project but am unable to find supporting docs for the same on internet.
Any suggestions?? or reference materials??
For what I know there is no way you could use your Java code and the XML files (including your WebView) in IOS application. the language/platform are different.
What you could do is to develop a web application that looks as a mobile application for example using JQueryMobile and the export it using the already suggested PhoneGap framework to any platform you would like.
You should try one of the several frameworks out there, being PhoneGap (http://phonegap.com) an interesting option.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
One of my applications is getting more and more popular, and I'd like to support multiple languages, but there are a few problems:
I don't know every single language out there
I'm actively developing the application, so strings change and new ones are added - often
That's why I've been looking at the possibilities of an online community translation tool. I'd like for it to be free and open source, and it'd be great if it supports Android!
Sorry if this is off-topic, I was a bit unsure, but I think it's a problem that many Android developers have to deal with.
For WordPress for Android we use GlotPress, you can upload your strings.xml and it will create sub projects for whatever language you want. You can then invite users to translate the project to their native language.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am admittedly not experienced in developing for android. I am looking for some API that lets me browse the users files, without installing a separate app via intents. Right now I have found the OI File Manager, but that uses intents to get it's work done. Is there another file manager library available for me to use? Preferably one that is easy to set-up and use.
This is a late answer but I worked on creating an android file explorer recently. https://github.com/mburman/Android-File-Explore
Its really straightforward. Essentially its just 1 file that you would need to integrate into your application - doesn't use intents either.
Why don't you create your own filebrowser using this example?
OpenIntent's FileManager is in fact open source:
https://github.com/openintents/filemanager
It is licensed under Apache License, Version 2.0.
You can integrate its source code in your application.