底部隐藏在软键盘后面

时间:2019-01-27 10:30:25

标签: java android kotlin bottom-sheet

我的应用程序中有一个BottomSheet,用户需要使用软键盘输入一些数据。但是,当出现软键盘时,底页隐藏在该键盘的后面。每当出现软键盘时,我都希望将其向上推。

我在清单中添加了以下内容。

    android:windowSoftInputMode="adjustResize"

这是XML

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:id="@+id/tv_selected_font"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:text="Choose a font"
        android:padding="8dp"
        android:gravity="center"/>

    <SearchView
        android:id="@+id/searchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:queryHint="Select"
        android:tooltipText="Tap to select"

       />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_f_chicken"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:visibility="visible" />

</LinearLayout>

但是,同样的方法不起作用。非常感谢您的帮助/支持。谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用scrollview来包装底部布局,并且存在相同的问题,scrollview可以解决问题。您还可以提供xml,以便我们提供其他帮助