我在应用程序底部的底部导航抽屉中工作,我还添加了scrollView但我的内容在底部导航后面,为什么? 如何解决?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AdminHome">
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
app:itemBackground="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
app:itemIconTint="@color/nav_item_color"
app:itemTextColor="@color/nav_item_color"
android:background="?android:attr/windowBackground"
android:layout_alignParentBottom="true"
app:menu="@menu/navigation" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:id="@+id/header"
android:background="@color/colorPrimary">
<ImageView
android:layout_width="220px"
android:layout_height="220px"
android:id="@+id/profilePic"
android:layout_margin="5dp"
android:src="@mipmap/ic_launcher_round"/>
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/line"
android:layout_above="@+id/navigation"
android:layout_margin="10dp">
</ScrollView>
</RelativeLayout>
由于代码太长,我简化了代码,只给出概念。
答案 0 :(得分:0)
下面的line
是什么:
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/line"
android:layout_above="@+id/navigation"
android:layout_margin="10dp">
我认为您必须这样设置:
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/header"
android:layout_above="@+id/navigation"
android:layout_margin="10dp">