我有一個圖像,我縮放到手機/平板電腦的寬度。它是224x1632。 imageview是在滾動視圖內,我需要能夠在該圖像上上下滾動。滾動查看+縮放圖片=不正確滾動,爲什麼不呢?
問題是滾動視圖在創建時根據圖像大小(長度爲1632)進行設置,但是當圖像縮放/拉伸時,它比原始圖像高出3倍。現在滾動視圖太小而無法滾動整個圖像。
任何方式使滾動視圖適合圖像?
注意:每部手機的圖像長度會有所不同,因此我無法將其設置爲預定大小。
XML代碼:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:scrollbars="vertical"
android:src="@drawable/tiles" />
</ScrollView>
你解決了嗎? – l33t 2013-08-23 21:42:13