android – 在RelativeLayout内部移动ImageView

前端之家收集整理的这篇文章主要介绍了android – 在RelativeLayout内部移动ImageView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在RelativeLayout内部移动 ImageView(或其他任何东西).有没有人知道这样做的正确方法

解决方法

Menseure ImageView的layout_height和layout_width设置为fill_parent.然后做:

要移动视图,请使用Matrix.这非常方便.

Matrix matrix = new Matrix();

matrix.reset();

matrix.postTranslate(x,y);

imageview.setScaleType(ScaleType.MATRIX);
imageview.setImageMatrix(matrix);
原文链接:https://www.f2er.com/android/316158.html

猜你在找的Android相关文章