android中ImageView放大和缩小相关问题?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中ImageView放大和缩小相关问题?相关的知识,希望对你有一定的参考价值。
点击按钮可以让ImageView按比例放大或缩小,并且放大后可以在原始的区域内拖动,额 ,不知道我说的够不够清楚?就像相框那样
参考技术A 1、如果只是想根据图片的大小来改变imageview的大小直接把imageview的属性设置为android:layout_width="match_parent"
android:layout_height="wrap_content"
2、如果想要把整个imageview放大,用
放大的动画把你这个imageview放大
scaleanimation
animation
=new
scaleanimation(0.0f,
1.4f,
0.0f,
1.4f,
animation.relative_to_self,
0.5f,
animation.relative_to_self,
0.5f);
animation.setduration(2000);//设置动画持续时间
image.setanimation(animation);
以上是关于android中ImageView放大和缩小相关问题?的主要内容,如果未能解决你的问题,请参考以下文章
Android自定义ImageView实现图片缩放滑动,双击放大缩小,多点触控缩放