在Imageview中,我需要爲相同的屬性(scaleType)使用兩個值。如何在Android XML文件中設置多個值
<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
- 用於捏變焦。
是否可以使用或有更好的方法?
如何使用Photoview庫? Jar文件可用? – Vignesh
這裏是鏈接到圖書館和指南https://github.com/chrisbanes/PhotoView – Zzokk
而不是使用庫項目,有什麼辦法可以包括在我目前的項目? – Vignesh