chongzi / markers-for-android

Automatically exported from code.google.com/p/markers-for-android
Apache License 2.0
0 stars 0 forks source link

Launch from my app with existing image as background #24

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
How could I go about launching through an  EDIT intent with an 
existing image as background.  And when finished marking up the image have it 
save to a specific location ?

Intent shareIntent = new Intent(Intent.ACTION_EDIT); 
shareIntent.setType("image/png");                      
shareIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(file));
shareIntent.putExtra(Intent.EXTRA_TEXT,"My Image");

Would something like this work?  But how would I have markers-for-android save 
the image after editing in the specified folder where the image came from with 
the same file name and overwrite it?   Any help would be great.  Thank you in 
advance.  

Original issue reported on code.google.com by promptne...@gmail.com on 29 Oct 2013 at 6:45