在 Imageview 中,我需要为相同的属性(scaleType)使用两个值。
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0.70"
android:background="#000000"
android:scaleType="fitXY" />
在上面的图像视图中,scaleType
我需要同时使用属性fitXY
和Matrix
.
fitXY
- 将图像拉伸到整个图像视图Matrix
- 用于捏缩放。
可以这样使用还是有更好的方法?