我有一個ListView,顯示行ImageView的,不進行縮放
這是XML:
...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@color/white"
android:orientation="vertical" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".30">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/face"
android:scaleType="centerCrop" />
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".70"
android:background="@color/white"
android:padding="4dp" >
// Other views...
</LinearLayout>
</LinearLayout>
…
,並得到這樣的結果:
這是原始圖像
需要的是沒有縮放圖像,就像這樣:
我使用的Android版本:ScaleType = 「centerCrop」 我與Android測試:adjustViewBounds = 「true」 和許多其他的參數,但從未成功
想法?
在此先感謝