5

データベースに画像ファイルのパスが保存されています。今それを使用して、ギャラリーでSDカードから画像を開きたいです。どうやってやるの。Uri のメソッドを見て、このメソッドを使用していますが、エラーが発生しています

File file = new File(filename);
            Uri uri = Uri.fromFile(file);
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            intent.setType("image/*");
            startActivity(intent); /** replace with your own uri */

それを修正する方法、

04-20 08:42:23.516: E/AndroidRuntime(16815): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///mnt/sdcard/My%20App/image_umxto_1.jpg }

よろしくお願いします

4

3 に答える 3

20
Intent intent = new Intent();
            intent.setAction(Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.fromFile(new File(filename)), "image/*");
            startActivity(intent);

このコードを使用して教えてください

于 2012-04-20T04:15:06.147 に答える
2

以下のコードを使用することもできます:::

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + "/sdcard/test.jpg"), "image/*");
startActivity(intent);
于 2012-04-20T03:43:47.067 に答える
1

以下の行を使用してタスクを実行できます:::

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/external/images/media/16"))); /** replace with your own uri */
于 2012-04-20T03:42:39.127 に答える