1

对于我的主要任务中的应用程序,我从用户那里获得了相当多的输入。目前,当他们输入输入时,键盘会升起,底部导航视图在其上方保持可见。但是我想要发生的是,当键盘弹出时,底部导航应该消失并且对用户不可见。所以我这样做吗?

包含底部导航栏的 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>

我希望过渡尽可能快速和干净,这样用户几乎不会注意到变化。

4

2 回答 2

3

在您的 AndroidManifest.xml 文件中的 MainActivity 的活动标记中添加以下内容:

android:windowSoftInputMode="adjustPan"

编辑:如果上述解决方案不起作用,解决方法:在每个编辑文本上添加焦点更改侦听器。如果它获得焦点,那么键盘就会出现。所以隐藏你的底视图。

View.OnFocusChangeListener myFocusListener = new OnFocusChangeListener() {
    @Override
    public void onFocusChange(View view, boolean hasFocus) {
        if (hasFocus) {
            bottomNavigationView.setVisiblity(View.GONE);
        } else {

            bottomNavigationView.setVisiblity(View.VISIBLE);

        }
    }
};

editText1.setOnFocusChangeListener(myFocusListener);
editText2.setOnFocusChangeListener(myFocusListener);
...
于 2018-09-19T17:37:01.890 回答
-1

您可以尝试WindowSoftInputMode=SoftInput.AdjustPan像这样在 Activity 顶部添加:

[Activity(WindowSoftInputMode=SoftInput.AdjustPan)]

另一种选择是在键盘上添加一个 ViewSourceObserver 并在键盘出现时隐藏 BottomNavigationView,然后在键盘消失时显示 BottomNavigationView。不过,第一个选项可能更好。

于 2018-09-24T11:12:34.003 回答