how to save a image to inbuilt gallery in android....
how to save a image to inbuilt gallery in android....
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ramya PPosted Mar 14, 2014, 2:17 AM
can you tell me how can i use different font styles choose at runtime like msword..
TrevorPosted Mar 13, 2014, 11:18 AM
You can find a piece of code on how to save using code in the following link:
http://stackoverflow.com/questions/13962922/android-save-camera-image-in-custom-folder
In my app I used a third-party sdk named lead tools to apply some processing on the image before saving to enhance it but I don't think this applies in your case. Does it?
Selva GanapathyPosted Mar 12, 2014, 12:22 AM
You can get inbuild image from the gallery using the following code.
Intent getImage= new Intent();
getImage.setAction(Intent.ACTION_GET_CONTENT);
getImage.setType("image/*");
startActivity(getImage);
Regards,
Selva Ganapathy K