gpt4 book ai didi

java - 底部导航 View 随着 windowSoftInputMode=adjustResize 上升

转载 作者:行者123 更新时间:2023-12-01 21:54:32 38 4
gpt4 key购买 nike

我的布局需要 windowSoftInputMode= adjustmentRezise,以便我的按钮与键盘一起上升。但我不希望我的 BottomNagivationView 受到此影响。我该如何解决这个问题?

我的 BottomNavigationView 来自 MainActivity.xml,它是:

<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"
tools:context=".MainActivity">

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation"></FrameLayout>

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
app:menu="@menu/bottom_menu"/>


</RelativeLayout>

我的 list 有 android:windowSoftInputMode="adjustPan"但当我打开 fragment 时我通过代码调整它:

getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

这里有一些图片,以便您可以理解我的意思:/image/QPhcM.jpg

所以我想知道的是如何将 BottomNavigationView 设置为在键盘打开时不执行任何操作,而我希望我的按钮受到以下影响:getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

最佳答案

在我的例子中,只需在 list 文件中添加以下行即可解决问题。android:windowSoftInputMode="adjustResize|adjustPan"

关于java - 底部导航 View 随着 windowSoftInputMode=adjustResize 上升,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58748658/

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