初学Android,被布局问题困扰。想实现一个Activity的标题和底部菜单栏不动,中间内容可以滚动的页面。但是现在中间的内容会被底部的菜单栏遮挡。
布局文件大致如下,只保留了框架,省的大神们看的烦
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical"
android:scrollbars="vertical" >
<!-- 标题栏 -->
<RelativeLayout
android:id="@+id/titleLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
</RelativeLayout>
<!-- 中间可以滚动部分放到ScrollView中 -->
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/titleLayout">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:orientation="vertical"
android:scrollbars="vertical" >
</RelativeLayout>
</ScrollView>
<!-- 底部菜单栏 -->
<LinearLayout
android:id="@+id/functionButtonLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#ffe4e1"
android:orientation="horizontal" >
</LinearLayout>
</RelativeLayout>
不太明白你想实现一个什么样的效果
“中间的内容会被底部的菜单栏遮挡”,,底部菜单会影藏吗?不隐藏当然会被遮挡啊!
你中间的ScrollView的高度不要是match_parent,这样相当于底下的控件把ScrollView的一部分挡住了
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/titleLayout">
高度不能是 "match_parent",因为他的parent是你全屏的relativeLayout,你只是设置了他在标题之下,然后充满parent,而底部又是设置的
android:layout_alignParentBottom="true",动不了,所以就把中间给遮住了
so easy,给你的ScrollView加个id,然后让你底部菜单栏below它之下就好了!
我想要设置:scrollview和底部菜单栏。
我是这么做的:外城用RelativeLayout,然后定义底部菜单栏,同时设置 android:layout_alignParentBottom="true"。
再定义scrollview,使其处于底部菜单栏上,android:layout_above="@+id/fragment_profile_bottom_linear_layout"。