Для моего приложения в основных задачах я беру немного информации от пользователя.В настоящее время, когда они идут, чтобы ввести свой ввод, клавиатура поднимается, и над ней остается видимое нижнее навигационное представление.Однако я хочу, чтобы, когда клавиатура всплывала, нижняя навигационная панель уходила и не была видна пользователю. Так что я делаю, я делаю это?
Код для MainActivity, который содержит нижнюю навигационную панель.
<?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:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/maintoolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_below="@id/maintoolbar"
android:layout_above="@+id/bottom_navigation"/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:background="@color/colorPrimary"
app:itemIconTint="@color/white"
app:itemTextColor="@color/white"
app:elevation="4dp"
app:menu="@menu/bottom_navigation_main"/>
</RelativeLayout>
Я хочу, чтобы переход был максимально быстрым и чистым, чтобы пользователь мог едва заметить изменение.