3
我正在Xamarin上開發移動應用程序。Scale ImageView適合屏幕寬度/高度,同時保持寬高比
在應用程序中,有一個ImageView
顯示的圖像太小而不適合屏幕寬度。
我想縮放圖像以適應屏幕的寬度,同時保持寬高比。
我axml
<LinearLayout
android:id="@+id/overlayImageContainer"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/overlayImageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:scaleType="fitCenter"/>
</LinearLayout>
結果
兩個ImageViews顯示)一個圖像比所述屏幕的寬度寬,和b)一個圖象比所述寬度窄的屏幕
我試過android:scaleType
和android:adjustViewBounds="true"
沒有成功的各種組合。