Android : How to open Image from URI in Android 4.4

on Monday, January 19, 2015


I have opened image from Uri it work good for me at 4.3 version But in 4.4 version it show a back button on top of image and when i clicked on that back button it take me gallery so in this case i am going out of my app so how can prevent this please help me..below is my code.



Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File photo_file = new File(path);
intent.setDataAndType(Uri.fromFile(photo_file), "image/*");
startActivity(intent);

0 comments:

Post a Comment