在全屏android中打开图像

时间:2012-01-05 07:55:07

标签: android image gallery

我的应用程序中有缩略图的图像,我希望显示全屏图像,如图所示,当您点击图库中的任何图像时,它会全屏显示。

我如何实现这一目标?

2 个答案:

答案 0 :(得分:2)

您可以使用下面的代码段启动图库应用程序本身以查看图像 你可以尝试一下。

  

意图意图=新意图();
  intent.setAction(android.content.Intent.ACTION_VIEW);   intent.setDataAndType(Uri.parse(file.getAbsolutePath()), “图像/ *”);

     

startActivity(意向);

答案 1 :(得分:1)

我建议您使用缩略图的onClick方法,以全屏模式开始新的Activity

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

将图像uri或指示图像源的内容传递给新活动:

Intent intent = new Intent(YouActivity.this, FullImage.class);
intent.putExtra("imageUri", R.drawable.yourImage); // or the path to your image : "/sdcard/MyImages/image.png"

而不仅仅是在FullImage活动的imageView中显示它:

ImageView icon = (ImageView) findViewById(R.id.myImage);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inTempStorage = new byte[3*1024];

Bitmap ops = BitmapFactory.decodeFile(path, options);
icon.setImageBitmap(ops);  // where icon is the imageView in your xml file