Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a butoon, on clicking of this button i want to open multiple buttons on a single AlertDialog like this :enter image description here

Give Me a help :

I was using this.... to add multiple buttons alertDialog.setButton(delete, "Delete", new OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub

            }
        });

but I found..., change setButton() to setButton2().. something like..... wt xcan i do for this....

share|improve this question
Make s Custom Dialog and inflated layout xml file to setVIew() it. Now add buttons as many as you want. – user370305 Sep 3 '12 at 8:29

3 Answers

I would inflate the AlertDialog with my own custom view (my_alert_dialog.xml).

AlertDialog.Builder alert = new AlertDialog.Builder(this);
LayoutInflater inflater = getLayoutInflater();
//inflate view for alertdialog since we are using multiple views inside a viewgroup (root = Layout top-level) (linear, relative, framelayout etc..)
View view = inflater.inflate(R.layout.my_alert_dialog, (ViewGroup) findViewById(R.id.root)); 

Button button1 = (Button) view.findViewById(R.id.button1); // etc.. for button2,3,4.
alert.setView(view);
alert.show();
share|improve this answer

You can only create a Alertdialog with 3 buttons if you dont make the view by yourself.

You can either make your own custom view in xml.

but i'd suggest you just make a List.

Check http://developer.android.com/guide/topics/ui/dialogs.html#AlertDialog "Adding a list"

share|improve this answer
Dialog dialog = new Dialog(context);
RelativeLayout featureLayout = (RelativeLayout) View.inflate(this, R.layout.yourview, null);
dialog.setContentView(featureLayout);
dialog.show();
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.