我正在寻找一种在多个布局中显示“叠加”视图的方法(如附图中所述)。
我的研究表明布局只能存在于其他布局中,并且没有覆盖布局的概念。那可能吗?有什么建议么?
非常感谢!凯。
我正在寻找一种在多个布局中显示“叠加”视图的方法(如附图中所述)。
我的研究表明布局只能存在于其他布局中,并且没有覆盖布局的概念。那可能吗?有什么建议么?
非常感谢!凯。
FrameLayout 是唯一可以渲染重叠视图的布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Primary View Primary View Primary View Primary View" />
</LinearLayout>
<RelativeLayout
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#80FFFFFF" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="OverLap" />
</RelativeLayout>
</FrameLayout>
我想您需要在布局上显示视图或布局元素。如果你应该像这样使用 FrameLayout
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
Your layout
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
Your view element to float or overlay
</LinearLayout>
</FrameLayout>