Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to place a drawable into a dialogs title bar. I tried the following:

final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
dialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, R.drawable.some_icon);
dialog.setTitle(R.string.my_dialog_title);
dialog.setContentView(R.layout.my_dialog_layout);
...

The icon doesn't show up but the title moves a little to the right. It seems the dialog reserves space for the drawable but doesn't draw it. I tried several different icons (also from the android resources) but non of them worked.

share|improve this question

5 Answers

up vote 9 down vote accepted

Call setFeatureDrawableResource() after show().

No idea why this works. :)

share|improve this answer
Thanks! Probably a bug in the framework? – Tom Nov 26 '10 at 12:24
5  
Use this and you put it before the show. requestWindowFeature --> setContentView --> setFeatureDrawableResource – Billy Bob Bain Feb 27 '11 at 12:04
This may also be used in an activity – obrok Nov 22 '11 at 13:56
1  
It seems to be sufficient to just place it after setContentView(...) – pgsandstrom Dec 1 '11 at 9:15
Any way to set on onClick listener on this drawable? – Peter Ajtai Mar 14 '12 at 0:25
show 1 more comment
Here is solution

final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
dialog.setTitle(R.string.my_dialog_title);
dialog.setContentView(R.layout.my_dialog_layout);
dialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,R.drawable.some_icon);
dialog.show(); 

If you want your dialog look like a activity than add theme to dialog as follow

final Dialog dialog = new Dialog(this,AlertDialog.THEME_HOLO_LIGHT);  
share|improve this answer

Here is THE solution. Follow the recipe and you shall have your icon! Note: order is very important...

        final Dialog yourDialog = new Dialog(YourClass.this);
            yourDialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);  //must come BEFORE setContentView
            yourDialog.setContentView(R.layout.yourDialog_layout);
            yourDialog.setTitle("Your Title");
            yourDialog.setCancelable(true);  
            yourDialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, R.drawable.your_icon);  //must come AFTER setContentView
share|improve this answer

I got it to work in a different way, thanks to the Smaïl Hammour post.

Place this static method in your preferred tool class:

public static void msgBox( String msg, String title, int type, final Context c){

    int theIcon = drawable.ic_dialog_alert;

    switch(type){
    case YourToolClass.CONFIRMATION:
        theIcon = drawable.ic_menu_help;
        break;      
    case YourToolClass.INFO:
        theIcon = drawable.ic_dialog_info;
        break;
    case YourToolClass.ALERT:
    default:
    }

AlertDialog.Builder builder = new AlertDialog.Builder(c);

    /* Here enters the .setIcon: */
builder.setMessage(msg) .setTitle (title) .setIcon(theIcon);

builder.setPositiveButton( "OK", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int id) {
        /*  */
    }
}); 


AlertDialog dialog = builder.create(); 
dialog.show();

}

To invoke:

YourToolClass.msgBox("the main message goes here", "Test", getBaseContext());
share|improve this answer
setIcon(R.drawable.image_name)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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