我EditText
中的RecyclerView
位于BottomSheetDialog
内。我现在遇到的问题是,当屏幕上显示BottomSheetDialog
时,我会点击EditText
中的第7个RecyclerView
。软键盘出现并覆盖EditText
,因此我无法看到我输入的内容。但是,如果我将BottomSheetDialog
拖了一下,EditText
即使我点击屏幕上的最后EditText
,也不会被软键盘覆盖。 RecyclerView
在这种情况下肯定会调整大小,但如果我没有将BottonSheetDialog
拖了一下,则不会调整大小。任何想法为什么?以及如何解决这个问题?
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>
答案 0 :(得分:1)
使用此KeyboardUtil作为新解决方案!
在BottomSheetFragment
中的onCreateDialog中使用它KeyboardUtil(getActivity(), view);
或
片段使用
new KeyboardUtil(this, findViewById(R.id.fragment_container));
使用此Util类
图片来源:Mikepenz
答案 1 :(得分:0)
看起来编辑您的清单并将android:windowSoftInputMode="adjustResize"
添加到此活动的<activity>
标记可以解决您的问题。
文档:https://developer.android.com/guide/topics/manifest/activity-element.html#wsoft