我有一个滚动好的ScrollView
内部,DialogFragment
直到我意识到对话框不应该有标题,所以我打电话 (in onCreateView
)
requestFeature(Window.FEATURE_NO_TITLE);
然后ScrollView
不再允许滚动,底部视图被挤压在一起。ScrollView
包含一个LinearLayout
带有一些应该溢出屏幕的视图的垂直。
我有一个滚动好的ScrollView
内部,DialogFragment
直到我意识到对话框不应该有标题,所以我打电话 (in onCreateView
)
requestFeature(Window.FEATURE_NO_TITLE);
然后ScrollView
不再允许滚动,底部视图被挤压在一起。ScrollView
包含一个LinearLayout
带有一些应该溢出屏幕的视图的垂直。
您应该通过继承当前的 android 对话框并添加windowSoftInputMode选项来为您的片段对话框设置自定义主题:
<style name="DialogFragmentStyle" parent="@android:style/Theme.Dialog">
<item name="android:windowSoftInputMode">stateHidden|adjustResize</item>
</style>
在创建构造函数时在片段对话框中使用您的主题
对话框 dialog = new Dialog(getActivity(), R.style.DialogFragmentStyle );
public class MyFragmentDialog extends DialogFragment{
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Dialog dialog = new Dialog(getActivity(), R.style.DialogFragmentStyle);
//stuff
return dialog;
}
//... other methods
}
这将帮助你
onCreateDialog(Bundle savedInstanceState)
{
Dialog dialog = new Dialog(context);
dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialog_layout);
dialog.setCanceledOnTouchOutside(false);
dialog.show();
}