gpt4 book ai didi

android - fragment View 下方的键盘

转载 作者:行者123 更新时间:2023-11-30 05:08:11 25 4
gpt4 key购买 nike

这就是我想要的 enter image description here我正在使用 BottomsheetFragment 我想要的是键盘应该在 View 下方。但在我的例子中,键盘与 fragment View 重叠。

这是我的 xml 文件 check my code here

and i am getting this output

overlapping keyboard

最佳答案

I have created a sample app and tested on the bottomsheet xml provided by you. By adding android:windowSoftInputMode="stateAlwaysHidden|adjustResize" in manifest file did work.

所以 Manifest 文件如下所示。

  <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);

I have tried both ways on an sample app

关于android - fragment View 下方的键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54178268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com