android 怎么把布局覆盖布局之上

 我来答
重生亦倾城xcc
2015-09-17 · TA获得超过4241个赞
知道大有可为答主
回答量:1867
采纳率:77%
帮助的人:647万
展开全部
 <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas。android。com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#a0c9be"
  android:orientation="vertical" >

  <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff"
  android:orientation="horizontal" >

  <TextView
  android:id="@+id/textView1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是标题"
  android:textColor="#000000" />
  </LinearLayout>

  <ScrollView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:layout_weight="1" >

  <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff" >

  <TextView
  android:id="@+id/textView3"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是内容1"
  android:textColor="#000000" />

  <TextView
  android:id="@+id/textView4"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/textView3"
  android:text="我是内容2"
  android:textColor="#000000" />
  </RelativeLayout>
  </ScrollView>

  <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff" >

  <TextView
  android:id="@+id/textView5"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是底部1"
  android:textColor="#000000" />

  <TextView
  android:id="@+id/textView6"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/textView5"
  android:text="我是底部2"
  android:textColor="#000000" />
  </RelativeLayout>

  </LinearLayout>

  因为把scrollview的 android:layout_weight="1"设置为了1,所以它就固定在中间了
  这样当“我是内容2”很少时 ,中间那部分就空出来了,如果内容很多时,这样显示是很好的
huanglenzhi
2015-01-25 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517198
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas。android。com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#a0c9be"
  android:orientation="vertical" >

  <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff"
  android:orientation="horizontal" >

  <TextView
  android:id="@+id/textView1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是标题"
  android:textColor="#000000" />
  </LinearLayout>

  <ScrollView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:layout_weight="1" >

  <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff" >

  <TextView
  android:id="@+id/textView3"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是内容1"
  android:textColor="#000000" />

  <TextView
  android:id="@+id/textView4"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/textView3"
  android:text="我是内容2"
  android:textColor="#000000" />
  </RelativeLayout>
  </ScrollView>

  <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="10dp"
  android:background="#ffffff" >

  <TextView
  android:id="@+id/textView5"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="我是底部1"
  android:textColor="#000000" />

  <TextView
  android:id="@+id/textView6"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/textView5"
  android:text="我是底部2"
  android:textColor="#000000" />
  </RelativeLayout>

  </LinearLayout>

  因为把scrollview的 android:layout_weight="1"设置为了1,所以它就固定在中间了
  这样当“我是内容2”很少时 ,中间那部分就空出来了,如果内容很多时,这样显示是很好的
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
88648005
2015-08-30 · 超过13用户采纳过TA的回答
知道答主
回答量:43
采纳率:0%
帮助的人:24.8万
展开全部
你说的是嵌套布局?在一个线性布局中再嵌套一个framelayout代码如下
<LinearLayout>

<FrameLayout>

<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="#ff654321" android:layout_weight="1" android:text="1"/>

</FrameLayout>

<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="#ff654321" android:layout_weight="1"
android:text="1"/>
</LinearLayout>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
LieToMee
2015-08-13 · TA获得超过1489个赞
知道小有建树答主
回答量:228
采纳率:0%
帮助的人:134万
展开全部
用FrameLayout分别添加各个子布局,后添加的布局会覆盖在前面的布局之上
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式