在线性布局中,我需要用一个透明的按钮覆盖一些文本视图,该按钮可填充整个布局大小(宽度/高度).我尝试过匹配父级布局属性,但这不起作用.谢谢您的帮助.
<LinearLayout
android:id="@+id/layout1"
android:layout_width="38dp"
android:layout_height="match_parent"
android:gravity="bottom"
android:orientation="vertical" >
<TextView
android:id="@+id/TVBlack"
android:layout_width="28dp"
android:layout_height="wrap_content"
android:layout_gravity="center|bottom"
android:background="@color/black"
android:text="test"
android:textColor="@color/white" />
<TextView
android:id="@+id/TVWhite"
android:layout_width="28dp"
android:layout_height="wrap_content"
android:layout_gravity="center|bottom"
android:text="test"
android:textColor="@color/black" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
android:text="Button" />
</LinearLayout>
解决方法:
线性布局无法实现您要执行的操作,它不会使对象彼此重叠,只会按照声明的顺序并排放置对象.您需要使用FrameLayout来实现您所描述的内容,请参见此处的文档:
http://developer.android.com/reference/android/widget/FrameLayout.html