在线性布局中,我需要使用透明按钮覆盖一些文本视图,该按钮填充整个布局大小(宽度/高度)。我试过匹配父布局属性,但这不起作用。谢谢你的帮助。
<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>
答案 0 :(得分:3)
线性布局无法实现您的目标,它不会将对象叠加在一起,它只会按照声明的顺序并排放置对象。您需要使用FrameLayout
来实现您所描述的内容,请参阅此处的文档:
http://developer.android.com/reference/android/widget/FrameLayout.html