我在底部工作表片段中有一个编辑文本。当焦点出现在编辑文本上时,布局就会上升。我试过了
android:windowSoftInputMode="adjustNothing"
它用于父活动,但不用于对话框片段。
这是我的底层课程:
public class CustomBottomSheetDialogFragment extends BottomSheetDialogFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.content_dialog_bottom_sheet, container, false);
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
return v;
}
}
初始状态
键盘出现时
我希望布局始终保持在键盘应位于布局上方的底部。
检查布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottomSheetLayout"
android:layout_width="match_parent"
android:layout_height="400dp"
android:background="@android:color/holo_blue_light"
android:padding="@dimen/activity_vertical_margin"
app:behavior_hideable="true"
app:behavior_peekHeight="60dp"
app:layout_behavior="@string/bottom_sheet_behavior">
<EditText
android:id="@+id/edt"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@android:color/white"
android:padding="10dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="250dp"
android:layout_below="@+id/edt" />
答案 0 :(得分:15)
在
中使用此功能Dialog Fragment
。
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
像这样
onCreateView
内部。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.dialog_fragment, container);
//set to adjust screen height automatically, when soft keyboard appears on screen
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
return rootView;
}
编辑1:
我对您使用的
layout
进行了一些更改,使其适用于您当前的layout
。
以下是layout
。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_gravity="bottom"
android:background="@android:color/holo_blue_light"
android:padding="10dp"
app:behavior_hideable="true"
app:behavior_peekHeight="60dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:isScrollContainer="false"
android:scrollbars="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/edt"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@android:color/white"
android:padding="10dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="250dp"
android:layout_below="@+id/edt" />
</LinearLayout>
</ScrollView>
</FrameLayout>
以下是Fragment
。
public class TestFragment extends BottomSheetDialogFragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.test4, container, false);
return v;
}
编辑2:
您可以尝试使用 android:elevation =“50dp”属性,在底部工作表上方的阴影中尝试使用框架布局中的阴影。
答案 1 :(得分:10)
BottomSheetFragment的100%工作公式
在BottomSheetFragment
中的onCreateDialog中使用它KeyboardUtil(getActivity(), view);
或
片段使用
new KeyboardUtil(this, findViewById(R.id.fragment_container));
使用此Util类
图片来源:Mikepenz
答案 2 :(得分:5)
似乎旧设计版本中存在错误。 我遇到了同样的问题,但在升级设计版之后,adjustnothing可以按预期工作。
在gradle中:
com.android.support:design:26.1.0
在BottomSheetDialog中:
getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
答案 3 :(得分:0)
在清单中的活动声明中,放入以下代码行:
android:windowSoftInputMode="stateHidden"
android:windowTranslucentNavigation="true"
android:windowTranslucentStatus="true"
答案 4 :(得分:0)
答案 5 :(得分:0)
获取对话框的装饰视图,并将底部填充设置为高度0
或对话框高度。
getDialog.getWindow.getDecorView.setpadding(0,0,0,0);
答案 6 :(得分:0)
我遇到了同样的情况,而不是EditText,我使用的是SearchView。当BottomSheetDialog进入隐藏状态时,键盘未被隐藏。
只需拨打 search_channel_template.clearFocus();
我将分享我用来隐藏键盘的代码。
search_channel_template = (SearchView) bottomSheetDialog.findViewById(R.id.search_channel_template);
txtVw_template_headerBS_down_id.setOnClickListener(new OnSingleClickListener() {
@Override
public void onSingleClick(View v) {
search_channel_template.clearFocus();
bottomSheetDialog.getBehavior().setState(BottomSheetBehaviorv2.STATE_HIDDEN);
}
});