Is it possible to write custom metadata to an JPG image using Android SDK or some 3rd party lib , and extracting it afterwards? If it is, is there any simple solution?
Thank you very much in advance
Android includes an ExifInterface, but also you could check out Commons Sanselan
Related
I'm trying to find a good library that download files like images, .css or even video (.avd). I found Glide for the images but if possible I would like a library that do both. Do you know a good one ? Thank in advance :)
One: https://github.com/lingochamp/FileDownloader
Two: https://github.com/AigeStudio/MultiThreadDownloader
There are loads out there. Google is the place to be instead of SO.
I have tried alot to solve the problem I am getting while using apache poi, but getting errors, each time. Is there any other way to extract text from .docx files or can we able to use javax package in android.
Thanks.
I have found way to extract text from .docx. I have used zipextractor for this
In an android app, I want to write IPTC metadata in images. Does android provide a built-in support for this? If not, are there any open source libraries for android applications?
Well, Android is programmed in Java, right? So this is IMHO a duplicate of at least Java library for reading and writing IPTC metadata to JPEG and TIFF and Editing/adding IPTC metadata in Android app
See also https://stackoverflow.com/questions/tagged/java+iptc
I need to import and show a 3D model from a WRL file in Android application. So far I have not been able to find any API examples' or 3rd party libraries to help with this. Any ideas (other than converting to another 3D file format)?
min3d is a promising one http://code.google.com/p/min3d/
hope this is what you need
It seems at present that no libraries are available for importing a WRL file into a native Android application. The solution is to convert the file to a 3DS or OBJ file format and then make use of the min3D framework.
I'd like to use basic images like the ones in the menu of the alarm application. Are these images integrated in the Android SDK ? I didn't find any way to access them.
If not, do you know a good free library ?
Thanks in advance,
Regards,
C.Hamel
http://www.darshancomputing.com/android/1.5-drawables.html is your answer
and than you access like this android:icon="#android:drawable/ic_menu_delete"
if you want to use image of android system then you can use that all image which are in android's system..
you just need to write android.R.drawable and you will get all image ...
android.R.drawable.btn_dialog
Look in your android-sdk folder, you will find folders for each version of android including all the system images. You can copy the images you need to your own ressource folder and use them from there.