如何在点击图像时使图像变大?

时间:2011-12-23 21:16:51

标签: android eclipse image click scale

我想知道如何将图片放大或在点击图片时看到图片全尺寸。 我想在屏幕上有四个小图像,所以当用户点击其中一个图像时它会变大,这样他们就可以正常看到图像。

我已经搜索了如何做到这一点,但没有找到任何东西。

如果你能帮助我,我会很感激。

谢谢:)

2 个答案:

答案 0 :(得分:1)

查看Hello Gallery教程,它将帮助您理解缩略图

http://developer.android.com/guide/tutorials/views/hello-gallery.html

答案 1 :(得分:0)

看看这个

缩略图的

onClick方法,您可以全屏模式启动新活动:

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.

在FullImage活动类

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);
// instead path you can get an image from previous activity.

 icon.setImageBitmap(ops);