2012-11-27 47 views
0

在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我需要同時使用該屬性fitXYMatrix

  • fitXY - 將圖片拉伸到整個圖像視圖
  • Matrix - 用於捏變焦。

是否可以使用或有更好的方法?

回答

2

嘗試使用此PhotoView library

根據spec scaleType應該containt只有一個值。

+0

如何使用Photoview庫? Jar文件可用? – Vignesh

+0

這裏是鏈接到圖書館和指南https://github.com/chrisbanes/PhotoView – Zzokk

+0

而不是使用庫項目,有什麼辦法可以包括在我目前的項目? – Vignesh

1

對於使用

'一些屬性,你可以使用XML多個值| '。例如android:gravity =「right | center_verticle」

如果支持,可以使用這個。不確定是否支持此屬性。

相關問題