1

我是 Android 应用程序的新手,我正在从事一个由我的朋友发起的项目。下面的代码来自一个加载一个视图的类,该视图有一个小图像,周围有一些文本。

当我单击缩略图时,我希望图像全屏显示(在标准的 Android 图像查看器上)。我尝试了几种不同的解决方案,但都没有奏效。

此示例引发以下异常:

E/AndroidRuntime(13768): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=android.resource://com.app.mid/2130837533 typ=image/png }
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.view_n1);

    ImageView img = (ImageView) findViewById(imageResource);

    img.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {

            Intent intent = new Intent();
            intent.setAction(android.content.Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.parse("android.resource://com.app.mid/" + R.drawable.p_page_11_image_0001), "image/png");
            startActivity(intent);              
        }
    });        
}

图像位于可绘制文件夹 (..\res\drawable-xhdpi) 内。我正在使用 Eclipse ADT,并将其配置为在我的 Galaxy Nexus 上运行。

同样,我尝试了几种解决方案,但都没有运气。有什么想法吗?谢谢

4

1 回答 1

1

尝试使用 Intent.ACTION_VIEW 而不是 android.content.Intent.ACTION_VIEW

Intent i = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(yourUri, "image/png");
startActivity(intent);
于 2013-03-07T23:38:43.463 回答