如何在android上查看内置imageviewer中的图像

时间:2012-06-25 11:01:37

标签: android

我在我的应用程序中查看图像。我想在Android设备中查看从drawable文件夹到内置图像查看器的图像。我可以在内置图像查看器中打开来自项目资源的图像,可以帮助任何代码或教程非常感谢!

我希望像屏幕截图一样查看图像:

enter image description here

提前致谢!

2 个答案:

答案 0 :(得分:0)

查看代码..

phonebookImageView.setImageResource(R.drawable.backphonebook);

感谢。

答案 1 :(得分:0)

    Intent intent = new Intent(Intent.ACTION_VIEW);

            String path = "android.resource://" + getPackageName() + "/" +R.drawable.yourimagename;  

 // path = "/mnt/sdcard/test.jpg";

            //Uri uri = Uri.fromFile(new File(path));

             Uri uri = Uri.parse(path);

            intent.setDataAndType(uri,"image/*");
            context.startActivity(intent);