我在LinearLayout中顯示一個小圖像,右側和左側有一些邊距。 我的問題是保證金是不可點擊的。 如何在我的視圖的左側和右側顯示空格,使用此額外空間來擴展可點擊區域?Android:展開ImageView可點擊區域
<ImageButton
android:id="@+id/markReadButton"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:adjustViewBounds="true"
android:background="@android:drawable/checkbox_on_background"
android:gravity="center_vertical"
android:onClick="onMarkRead" >
</ImageButton>
我試過了,它不給我任何空間... – user1026605
看起來有一些額外的東西必須做,以獲得填充像你一樣工作想。您可以使用src值設置圖像並將背景設置爲@null。然後增加ImageButton對象的整體寬度將爲您提供所需的大小。 – Aldryd