跳到主要內容

Android - ImageView 移除多餘 Padding

使用 ImageView 顯示圖片時發現有多餘的Padding出現
查詢過後得到原因的解釋
因為手機解析度(density)的差異
ImageView在不同的裝置上的邊界顯示會有所不同
要確保圖片的顯示正確,可以在 ImageView 上設定adjustViewBounds屬性

<ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            .....
            android:adjustViewBounds="true"/>

留言