In the Android docs on AlertDialog, it gives the following instruction and example for setting a custom view in an AlertDialog:

If you want to display a more complex view, look up the FrameLayout called "body" and add your view to it:

FrameLayout fl = (FrameLayout) findViewById(R.id.body);
fl.add(myView, new LayoutParams(FILL_PARENT, WRAP_CONTENT));

First off, it's pretty obvious that add() is a typo and is meant to be addView().

I'm confused by the first line using R.id.body. It seems that it's the body element of the AlertDialog ... but I can't just enter that in my code b/c it gives a compile error. Where does R.id.body get defined or assigned or whatever?

Here's my code. I tried to use setView(findViewById(R.layout.whatever) on the builder but it didn't work. I'm assuming because I didn't manually inflate it?

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title")
    .setCancelable(false)
    .setPositiveButton("Go", new DialogInterface.OnClickListener() {

    @Override
    public void onClick(DialogInterface dialog, int id) {
        EditText textBox = (EditText) findViewById(R.id.textbox);
        doStuff();
    }
});

FrameLayout f1 = (FrameLayout)findViewById(R.id.body /*CURRENTLY an ERROR*/);
f1.addView(findViewById(R.layout.dialog_view));

AlertDialog alert = builder.create();
alert.show();
link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

You are correct, it's because you didn't manually inflate it. It appears that you're trying to "extract" the "body" id from your Activity's layout, and that won't work.

You probably want something like this:

LayoutInflater inflater = getLayoutInflater();
FrameLayout f1 = (FrameLayout)alert.findViewById(android.R.id.body);
f1.addView(inflater.inflate(R.layout.dialog_view, f1, false));
link|improve this answer
4  
Interestingly enough, body is not defined as a constant in android.R.id. I'm still not clear on how to access the 'body' element of the created AlertDialog. I'd still like to know how to do this, but for now I will just try to inflate a view and use setView in the builder. – stormin986 May 8 '10 at 19:36
1  
Actually this still leave me with a question then (I'm new to inflating views). Using builder.setView(inflater.inflate(R.id.dialog, ROOT_VIEWGROUP[, ATTACH_TO_ROOT])), the docs say the root viewgroup is optional. Should this be used in this case? If so ... still have to figure out how to get a reference to the AlertDialog... – stormin986 May 8 '10 at 19:44
1  
It is optional, but then you won't have a reference to the parent from inside the layout you're inflating. Things like android:layout_gravity won't work on the toplevel view... and maybe you don't need them to. When you call AlertDialog alert = builder.create(), you have a reference to your AlertDialog. Long answer short, it is optional. Give it a try, depending on what you're doing in your custom layout, it'll probably work. – synic May 8 '10 at 19:50
1  
I'm not clear on how to reference the view within the AlertDialog. What would you recommend doing in this case if I did want to reference the parent? The only thing I see within alertDialog that returns a view is getCurrentFocus() – stormin986 May 8 '10 at 19:57
3  
Hold onto the View you inflate. Call findViewById() on that View when you need stuff from its contents. See: github.com/commonsguy/cw-android/tree/master/Database/Constants – CommonsWare May 8 '10 at 20:19
show 3 more comments
feedback

You can create your view directly from the Layout Inflater, you only need to use the name of your layout XML file and the ID of the layout in file.

Your XML file should have an ID like this:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/dialog_layout_root"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:padding="10dp"
              >

And then you can set your layout on the builder with the following:

LayoutInflater inflater = getLayoutInflater();
View dialoglayout = inflater.inflate(R.layout.dialog_layout, (ViewGroup) getCurrentFocus());
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialoglayout);
link|improve this answer
1  
And where is R.id.dialog_layout_root in this example? Isn't that a view in the current Activity? – Alex Pretzlav Dec 28 '11 at 1:59
@AlexPretzlav: dialog_layout_root is not needed in this example. All you need is the name of your xml file for R.layout.[name_of_xml_file]. – Igor G. Mar 28 at 23:01
I have just tested the code above, and it does not work. Not sure why people continue to upvote it. – Temperage May 15 at 16:33
feedback

The android documents have been edited to correct the errors.

The view inside the AlertDialog is called android.R.id.custom

http://developer.android.com/reference/android/app/AlertDialog.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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