I'm developing an Android 2.2 application.

I want to show a text with an Ok butto but I want to add my custom style.

What is the better choice an AlertDialog with a custom layout or a Dialog?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

I'd go for AlertDialog:

  • It's easier to implement.
  • The only custom thing you have to do is an XML layout and then inflate it.

AlertDialog dialog = new AlertDialog.Builder(this)
    .setView(getLayoutInflater().inflate(R.layout.custom_dialog, null))
    .create();

In order to listen for UI events:

View view = getLayoutInflater().inflate(R.layout.custom_dialog, null);
Button btn = (Button)view.findViewById(R.id.the_id_of_the_button);
btn.setOnClickListener(blah blah);
AlertDialog dialog = new AlertDialog.Builder(this)
    .setView(view)
    .create();
link|improve this answer
Thanks for your answer. I have another question: if this custom_dialog layout has a button, how can I add a OnClickListener? – VansFannel Feb 7 '11 at 14:58
Let me update me answer... give me 1 minute. – Cristian Feb 7 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

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