是否有可能我的ImageView
適合所有屏幕尺寸,而不會延長圖像?ImageView適合沒有拉伸圖像
我嘗試了所有規模類型將其更改爲背景和src與fill_parent
>wrap_content
,但仍。如果圖像不小於它只是看起來拉長..
例如:
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:background="@drawable/background" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:background="@drawable/background" />
這些2適合的寬度,但該圖像被拉伸..但是當我改變它SRC的圖像,則中心和小。
你問的東西,這是最明顯的是不可能的。當然,除非您想要將它嵌入的圖像和屏幕/視圖恰好具有相同的縱橫比。 – mathheadinclouds