我正在尝试实现底部表单,当我按下按钮时,我想弹出带有编辑文本结尾的底部表单,我希望软键盘在底部表单下打开,这是键盘遮住了我的底部的问题。 基本上,我尝试克隆Google任务,当您添加新任务时,它的弹出式底部会打开键盘,但不能覆盖
public class AddTaskBottomSheet extends BottomSheetDialogFragment {
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
view = inflater.inflate(R.layout.bottom_sheet_add_task, container, false);
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
return view;
}
}
这是我的buttomsheet xml
<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="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:padding="15dp"
>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="@color/colorGrey">
<EditText
android:id="@+id/add_task_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorBlack" />
</android.support.design.widget.TextInputLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_add_todo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="15dp"
android:layout_marginRight="15dp">
</android.support.v7.widget.RecyclerView>
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:columnCount="4"
android:rowCount="1">
<Button
android:id="@+id/add_task_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center"
android:background="@drawable/roundbtn"
/>
<ImageButton
android:id="@+id/add_date_imagebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/ic_date_range" />
<ImageButton
android:id="@+id/add_files_imagebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/ic_attach_file" />
<TextView
android:id="@+id/task_deadline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="20dp" />
</GridLayout>