I have saved same image into /data/data/mypackage/img/ and now I want show this full screen, I had try with ACTION_VIEW for show with android standard program but it not read from /data/data/..
How can I do ?
I have saved same image into /data/data/mypackage/img/ and now I want show this full
Share
The ‘android standard program’ you are launching is not able to access /data/data/mypackage, and thus cannot load the images you are saving in there
Try saving your images in a directory on the SD card instead:
If your device doesn’t have an SD card then you will need to create a world readable subdirectory inside your package dir, and then create a world readable file within it (Android 2.3+)
Or if you are on earlier versions of Android it looks like you don’t get much choice in the directory name. The following code will create a world readable file in the data/data/mypackagename/files/ directory