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 have a Dialog that is constructed with AlertDialog.Builder, and I would like to change the backgroud color of the dialog.

I've been reading in Internet that it's possible to do using ContextThemeWrapper (working with API 10), but it doesn't work.

What I'm doing is:

ContextThemeWrapper wrapper = new ContextThemeWrapper(this, R.style.MyDialogTheme);
AlertDialog alertDialog = new AlertDialog.Builder(wrapper)).create();  

<style name="MyDialogTheme" parent="@android:style/Theme.Dialog">
    <item name="android:background">#FFFFFF</item>
</style>

Why does this not work?

Thanks in advance!

share|improve this question

2 Answers

Use the Following code for customized Dialog Box..

protected Dialog onCreateDialog(int dialogId) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final AlertDialog.Builder builder = new AlertDialog.Builder(this);


    final View viewMessEdit = inflater.inflate(R.layout.example,(ViewGroup) findViewById(R.id.dialog_mess_edit_root));
          builder.setView(viewMessEdit);
          viewMessEdit.setBackgroundResource(R.color.pink_dark);

}

And Follow this Link..

How to change dialog background color programatically?

share|improve this answer

Here the reference sit to make Customdialog

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.