1. 程式人生 > >Android ImageView 白邊 解決方案

Android ImageView 白邊 解決方案

1、出現白邊情況程式碼

<ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@mipmap/xxx"/>

2、解決程式碼
<ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:adjustViewBounds="true"
                android:src="@mipmap/xxx"/>