放置一张imageview,把它设置背景为全白的图
请问要如何点击它并把它等比例缩小呢?
例如:点一下 1 >0.8 >0.6>0.4>> 再回到1
Image11.setOnClickListener(this);
public void onClick(View v) {
Image11.buildDrawingCache();
Bitmap bmp = Image11.getDrawingCache();
int width = bmp.getWidth();
int height = bmp.getHeight();
Matrix matrix = new Matrix();
matrix.postScale(0.8f,0.8f);
// 得到新的图片
Bitmap newbm = Bitmap.createBitmap(bmp, 0, 0, width, height,
matrix, true);
//重新加载 imageView
Image11.setImageBitmap(newbm);
}
可以执行但是点击image的时候不会变小Q.Q