android软键盘覆盖在bottomsheet的recyclerview中的edittext

时间:2016-11-17 20:56:42

标签: android android-softkeyboard bottom-sheet

EditText中的RecyclerView位于BottomSheetDialog内。我现在遇到的问题是,当屏幕上显示BottomSheetDialog时,我会点击EditText中的第7个RecyclerView。软键盘出现并覆盖EditText,因此我无法看到我输入的内容。但是,如果我将BottomSheetDialog拖了一下,EditText即使我点击屏幕上的最后EditText,也不会被软键盘覆盖。 RecyclerView在这种情况下肯定会调整大小,但如果我没有将BottonSheetDialog拖了一下,则不会调整大小。任何想法为什么?以及如何解决这个问题?

这是它的样子。 enter image description here

Main.java

class VH extends RecyclerView.ViewHolder {
    public VH(View itemView) {
        super(itemView);
    }
}

private void test() {
    BSTest bsTest = new BSTest(this);
    bsTest.setContentView(R.layout.bottomsheet_test);
    RecyclerView rv = (RecyclerView) bsTest.findViewById(R.id.recyclerView);
    rv.setLayoutManager(new LinearLayoutManager(this));
    rv.setAdapter(new RecyclerView.Adapter() {
        @Override
        public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
            return new VH(LayoutInflater.from(parent.getContext()).inflate(R.layout.item_edittext, parent, false));
        }

        @Override
        public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {

        }

        @Override
        public int getItemCount() {
            return 20;
        }
    });
    bsTest.show();
}

BSTest.java

public class BSTest extends BottomSheetDialog {
    public BSTest(@NonNull Context context) {
        super(context);
    }

    private BSTest(@NonNull Context context, @StyleRes int theme) {
        super(context, theme);
    }

    private BSTest(@NonNull Context context, boolean cancelable, OnCancelListener cancelListener) {
        super(context, cancelable, cancelListener);
    }
}

bottomsheet_test.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="1"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="2"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="3"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

item_edittext.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="1"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="2"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="3"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

使用此KeyboardUtil作为新解决方案!

在BottomSheetFragment

中的onCreateDialog中使用它
KeyboardUtil(getActivity(), view);

片段使用

new KeyboardUtil(this, findViewById(R.id.fragment_container));

使用此Util类

https://github.com/mikepenz/MaterialDrawer/blob/aa9136fb4f5b3a80460fe5f47213985026d20c88/library/src/main/java/com/mikepenz/materialdrawer/util/KeyboardUtil.java

图片来源:Mikepenz

答案 1 :(得分:0)

看起来编辑您的清单并将android:windowSoftInputMode="adjustResize"添加到此活动的<activity>标记可以解决您的问题。

文档:https://developer.android.com/guide/topics/manifest/activity-element.html#wsoft