Может у кого-нибудь есть идея сделать элементы меню навигации прокручиваемыми ко всем пунктам в панели меню.У меня есть около 10 предметов в ящике, и есть верхний и нижний колонтитулы.Все элементы в меню навигации не видны, последние 2 элемента не видны, поскольку скрыты за нижним колонтитулом.Пожалуйста, посмотрите на картинку ниже и предложите мне, как я могу это исправить, не добавляя просмотр списка`
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="@dimen/nav_width"
android:layout_height="wrap_content"
android:layout_gravity="start"
app:menu="@menu/drawer_view"
app:headerLayout="@layout/header"
android:scrollbars="vertical"
app:itemIconTint="@color/menu_selection"
app:itemTextColor="@color/menu_selection"
app:itemBackground="@android:color/transparent"
>
<LinearLayout android:id="@+id/layout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="3"
android:padding="15dp"
android:background="@color/white"
android:layout_marginTop="@dimen/_5ssp"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Change Language"
android:textSize="@dimen/_10ssp"
android:textStyle="bold"
android:layout_weight="1"
android:fontFamily="@font/cairo_regular"
android:layout_marginRight="@dimen/_10ssp"/>
<android.support.v7.widget.SwitchCompat
android:id="@+id/switchButton"
android:layout_width="wrap_content"
android:checked="false"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="English"
android:textSize="@dimen/_10ssp"
android:theme="@style/Color1SwitchStyle"
android:fontFamily="@font/cairo_regular"
android:layout_weight="1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="عربى"
android:layout_gravity="end"
android:gravity="end"
android:textSize="@dimen/_10ssp"
android:layout_weight="1"/>
</LinearLayout>
</android.support.design.widget.NavigationView>
` NavigationMenuPicture