我告訴你,我有以下代碼如何縮小圖像(ImageView或ImageButton)而不丟失圖像?
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/happy" />
但它是太大,我需要縮小它,但是當我做了以下情況
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="44dp"
android:layout_height="41dp"
android:src="@drawable/happy" />
您可以看到圖像的某些部分丟失了,如何在沒有這種情況的情況下收縮圖像?
對於這個問題,在版面 –
+1中使用wieght,這個問題總是被很多人問起,也是一個令人困惑的問題,但是這個問題是可以解決的問題。 –