随着 的引入ConstraintLayout
,您可以使用约束来减少无边框的宽度ImageButton
,默认情况下太宽了,通过将其限制为与高度一样宽:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_closeable_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:contentDescription="@string/action_close"
android:src="@android:drawable/ic_menu_close_clear_cancel"
app:layout_constraintDimensionRatio="w,1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
我不建议您将其设置得比这更小,因为触摸目标需要至少为 48dp x 48dp,就像Google 的 Material Design 指南一样,否则用户将很难尝试触摸它。
如果您真的需要它看起来更接近视图的边缘,您始终可以使用未居中的图像(在一侧或两侧具有透明填充),但我会尽力避免这样做解决方法和尝试重新考虑我的应用程序的设计,以便按原样容纳按钮。