片段视图下方的键盘

时间:2019-01-14 08:55:44

标签: android

这就是我想要的 enter image description here我正在使用BottomsheetFragment我想要的是键盘应该在视图下方。但就我而言,键盘与片段视图重叠。

这是我的xml文件check my code here

and i am getting this output

overlapping keyboard

1 个答案:

答案 0 :(得分:0)

  

我创建了一个示例应用程序,并在提供的最底层xml上进行了测试   由你。通过添加   android:windowSoftInputMode="stateAlwaysHidden|adjustResize"在   清单文件确实起作用。

清单文件如下所示。

  <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar"
            android:windowSoftInputMode="stateAlwaysHidden|adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

或者,您也可以在Activity类的onCreate内部动态设置此属性,如下所示:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
  

我已经在示例应用程序上尝试了两种方式