我正在尝试使用Android支持库中的浮动操作按钮小部件。该按钮正确显示,但它会捕获不在按钮内的点击。它接受可见按钮外至少一个完整半径的点击。我不知道是否是由于阴影造成的,但是我甚至可以点击可见阴影以外的按钮,按钮会捕获点击。此外,如果我将按钮的边距设置为零,则按钮和屏幕边缘之间仍然存在较大的间隙。我也尝试将填充设置为零,但它没有效果。
这是我的布局:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="0dp"
android:layout_marginBottom="0dp"
app:elevation="6dp"
app:borderWidth="0dp" />
</android.support.design.widget.CoordinatorLayout>