我在我的应用程序中使用溢出,在适配器中,如果我在顶部设置按钮的重力然后单击工作正常,但如果我设置重力底部然后单击不起作用,看起来显示的区域与实际绘制的区域不同。因为如果我点击外部按钮(按钮上方2-3 px),则会触发其点击事件,但不会触发按钮。
在溢出中我有图像和按钮。
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
tools:src="@drawable/image_1"/>
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:layout_gravity="bottom"
android:clickable="true"
android:layout_marginBottom="30dp"
android:background="@android:color/holo_red_dark"/>
这是我的主要布局
请帮忙