如何创建没有标题的DialogFragment?


358

我正在创建一个DialogFragment以显示有关我的应用程序的一些帮助消息。除了一件事情之外,其他所有东西都工作正常:窗口顶部有一个黑色条纹,显示了DialogFragment,我认为这是为标题保留的,这是我不想使用的东西。

这特别痛苦,因为我的自定义DialogFragment使用白色背景,因此更改太臭名昭著而无法搁置。

让我以图形方式向您展示:

在此处输入图片说明

现在,我的DialogFragment的XML代码如下:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout
        android:id="@+id/holding" 
        android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:background="@drawable/dialog_fragment_bg"
        >
        <!-- Usamos un LinearLayout para que la imagen y el texto esten bien alineados -->
        <LinearLayout
            android:id="@+id/confirmationToast" 
            android:orientation="horizontal" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            >

            <TextView android:id="@+id/confirmationToastText" 
            android:layout_width="wrap_content"
            android:layout_height="fill_parent" 
            android:text="@string/help_dialog_fragment"
            android:textColor="#AE0000"
            android:gravity="center_vertical"
            />

        </LinearLayout>
        <LinearLayout
            android:id="@+id/confirmationButtonLL" 
            android:orientation="horizontal" 
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:gravity="center_horizontal"
            >    
            <Button android:id="@+id/confirmationDialogButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="60dp"
                android:background="@drawable/ok_button">
            </Button>
        </LinearLayout>
    </LinearLayout>
</ScrollView>

以及实现DialogFragment的类的代码:

public class HelpDialog extends DialogFragment {

    public HelpDialog() {
        // Empty constructor required for DialogFragment
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        //Inflate the XML view for the help dialog fragment
        View view = inflater.inflate(R.layout.help_dialog_fragment, container);
        TextView text = (TextView)view.findViewById(R.id.confirmationToastText);
        text.setText(Html.fromHtml(getString(R.string.help_dialog_fragment)));
        //get the OK button and add a Listener
        ((Button) view.findViewById(R.id.confirmationDialogButton)).setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                 // When button is clicked, call up to owning activity.
                HelpDialog.this.dismiss();
             }
         });
        return view;
    }

}

以及主要活动中的创建过程:

/**
 * Shows the HelpDialog Fragment
 */
private void showHelpDialog() {
    android.support.v4.app.FragmentManager fm = getSupportFragmentManager();
    HelpDialog helpDialog = new HelpDialog();
    helpDialog.show(fm, "fragment_help");
}

我真的不知道与Dialog相关的答案是否也适合Android:如何创建没有标题的Dialog?

我如何摆脱这个标题区域?


从FragmentActivity或Activity类调用此showHelpDialog方法?
2013年

80
+1 ...我认为这是我第一次阅读问题时大笑
Jason Crosby 2013年

1
+1为幽默感。您对问题的图形化解释正是我对这个问题的看法!
Luis Artola

Answers:


589

只需将这行代码添加到您的 HelpDialog.onCreateView(...)

getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);

这样,您明确要求获取一个没有标题的窗口:)


编辑

由于@DataGraham@Blundell指出,在下面的意见,它的安全添加请求标题无窗的onCreateDialog()方法,而不是onCreateView()。这样,当您不使用片段作为NPE时,您可以避免使NPE恼人Dialog

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
  Dialog dialog = super.onCreateDialog(savedInstanceState);

  // request a window without the title
  dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
  return dialog;
}

61
当然,您也可以使用便捷方法getDialog().requestWindowFeature(Window.FEATURE_NO_TITLE)...
a.bertucci

8
可能要为此在onCreateDialog相反,如果你的片段显示作为的对话框。
DataGraham

2
@ a.bertucci你是最棒的!但是,如果您曾经将该片段添加为普通片段,getDialog则会返回NPE
Blundell 2013年

4
这样可以缩小对话框的宽度。此问题有任何解决方法吗?
Clocksmith

2
@clocksmith是android:layout_width对话框布局中根视图的属性,设置为wrap_content吗?
ataulm 2014年

78

对话框片段具有setStyle方法,应在创建视图Java Doc之前调用该方法。对话框的样式也可以使用相同的方法设置

public static MyDialogFragment newInstance() {
        MyDialogFragment mDialogFragment = new MyDialogFragment();
        //Set Arguments here if needed for dialog auto recreation on screen rotation
        mDialogFragment.setStyle(DialogFragment.STYLE_NO_TITLE, 0);
        return mDialogFragment;
}

3
最多,我尝试使用setStype(STYLE_NO_TITLE,0)。但是结果是我的对话框被切成宽度的1/4,所以对话框中的消息没有全部显示。
vliux

1
通过查看android的源代码,我认为两种方式在代码中实际上是相同的。我有同样的问题,即它的切割到1/4体积过于虽然:(还没有解决呢。。
abhishekmukherg

1
这是最好的方法。
Psypher

1
@Sam您是对的,Window样式保留在onSaveInstanceState中,然后再恢复。我仍然相信一般来说,在onCreate()中初始化所有内容是一种更好的做法。
BladeCoder 2015年

1
布局的根视图的所有直接子代必须具有match_parant的宽度。然后,您将获得一个具有正常宽度的对话框。
nicolausYes

22
FragmentManager manager = getSupportFragmentManager();
SettingsDialog sd = new SettingsDialog();
sd.setStyle(DialogFragment.STYLE_NO_TITLE, 0);
sd.show(manager, "settings_dialog");

1
sd.setStyle(DialogFragment.STYLE_NORMAL,android.R.style.Theme_Holo_Dialog_NoActionBar)我会说
Androider 2016年

OMG经过如此多的尝试,这是唯一可行的方法。
Alex

16

尝试简单的方法

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(STYLE_NO_TITLE, 0);
}

在Samsung Galaxy S4上正常工作。
CoolMind

11
public class LoginDialog extends DialogFragment {   
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.login_dialog, null);
        getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        return view;
    }   
}

10

将样式设置为Theme_Holo_Dialog_NoActionBar:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(STYLE_NORMAL, android.R.style.Theme_Holo_Dialog_NoActionBar);
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.