View image in ACTION_VIEW intent?

Check out Android issue 2092 it sounds similar to what you are describing. The issue states, "Bitmap.compress() fails for PNG files saved in Indexed Color Mode (instead of RGB color mode)", however the first commenter thinks that, "it looks like its not an indexed color problem but a PNG problem.

Check out Android issue 2092 it sounds similar to what you are describing. The issue states, "Bitmap.compress() fails for PNG files saved in Indexed Color Mode (instead of RGB color mode)", however the first commenter thinks that, "it looks like its not an indexed color problem but a PNG problem. " It looks like your code is fine, compare it to this Android snippet: Intent intent = new Intent(); intent.

SetAction(android.content.Intent. ACTION_VIEW); File file = new File("/sdcard/test. Mp4"); intent.

SetDataAndType(Uri. FromFile(file), "video/*"); startActivity(intent); Intent intent = new Intent(); intent. SetAction(android.content.Intent.

ACTION_VIEW); File file = new File("/sdcard/test. Mp3"); intent. SetDataAndType(Uri.

FromFile(file), "audio/*"); startActivity(intent).

Another problem may be permissions on the file. Typically your /data/data/app/ directories are not world readable, and are owned by you applications "app_XX" user/group. Either make sure your permissions are correct, or make sure the file is in a place that both applications can read (emms, or sd card).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions