This should be a simple task, but for some reason I can find a way to set the title of a DialogFragment. (I am setting the dialog contents using "onCreateView" overload).

The default style leaves a place for the title, but I can't find any method on the DialogFragment class to set it.

The title is somehow magically set when the "onCreateDialog" method is used to set the contents, so I wonder if this is by design, or there is a special trick to set it when using the "onCreateView" overload.

link|improve this question

40% accept rate
feedback

2 Answers

up vote 27 down vote accepted

You can use getDialog().setTitle("My Dialog Title")

Just like this:

public static class MyDialogFragment extends DialogFragment {
    ...
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Set title for this dialog
        getDialog().setTitle("My Dialog Title");

        View v = inflater.inflate(R.layout.mydialog, container, false);
        ...
        return v;
    }
    ...
}

Hope this helps!

link|improve this answer
1  
Yes, indeed getDialog().setTitle() does the trick. After looking at the solution it does make a lot of sense to work that way but for some reason I expected the call to set the title to be on the DialogFragment class itself (same place where setStyle() and DialogFragment.STYLE_NO_TITLE are defined). Thank you very much for the solution. – StefanK Apr 8 '11 at 11:53
What if I wanted to change the background of the title. Is that possible? – MinceMan Jan 22 at 2:55
feedback

Does overriding onCreateDialog and setting the title directly on the Dialog work? Like this:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog dialog = super.onCreateDialog(savedInstanceState);
    dialog.setTitle("My Title");
    return dialog;
}
link|improve this answer
Just tried it and it seems like it would work. – msal Jan 24 at 11:02
This worked supurbly, for some reason the dialog wasn't created before the view in my case, so I always got a nullPointerException. This solution however, solved all my problems! upvote. – Robin Heggelund Hansen Mar 8 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.