Содержимое идет за нижнюю панель навигации - PullRequest
0 голосов
/ 16 февраля 2019

Я работаю в нижнем блоке навигации, который находится в нижней части приложения, я также добавил 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>

Из-за слишком длинного кода я сокращаю свой код и просто даю концепцию.

1 Ответ

0 голосов
/ 16 февраля 2019

Что такое 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">
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...