6

我有一个滚动好的ScrollView内部,DialogFragment直到我意识到对话框不应该有标题,所以我打电话 (in onCreateView)

requestFeature(Window.FEATURE_NO_TITLE);

然后ScrollView不再允许滚动,底部视图被挤压在一起。ScrollView包含一个LinearLayout带有一些应该溢出屏幕的视图的垂直。

4

2 回答 2

4

您应该通过继承当前的 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

}
于 2014-02-10T14:34:23.937 回答
0

这将帮助你

 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();
}
于 2016-07-25T13:40:20.100 回答