我有一个按钮,由于它的大小,在某些手机上太难点击了.
但是让它更大会破坏布局.
有可能向一个视图解释它有一个比它的可见区域更大的“点击框”吗?
解决方法
不确定这是否有帮助:
如果您使用没有背景的ImageButton并设置了填充值,则您的按钮将具有更大的可点击区域.
<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/img_close" android:id="@+id/btnClose" android:padding="25dip" android:background="#0000"></ImageButton>