How can I create positive and negative buttons at custom dialogs

前端 未结 2 954
有刺的猬
有刺的猬 2020-12-19 18:33

I want to create a custom dialog. So i create a template \'dialog_change\' and I open the dialog.

Dialog myDialog = new Dialog(Overview.this);
myDialog.setCo         


        
相关标签:
2条回答
  • 2020-12-19 18:48

    I'd just make your own custom class to simulate an AlertDialog, this way you can use your own layout with no strings attached. (There are some weird issues where you can't fully get rid of the frame if you want a fully styled AlertDialog). Something like this, but you can expand this as fully as you want:

    public class CustomDialog extends Dialog {
        private Button positive, negative;
    
        public CustomDialog(Context context) {
            super(context);
            initialize(context);
        }
    
        protected CustomDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
            super(context, cancelable, cancelListener);
            initialize(context);
        }
    
        public CustomDialog(Context context, int theme) {
            super(context, theme);
            initialize(context);
        }
    
        private void initialize(Context c) {
            //Inflate your layout, get a handle for the buttons
    
            positive = (Button)layout.findViewById(R.id.positive):
            negative = (Button)layout.findViewById(R.id.negative):
    
            positive.setVisibility(View.GONE);
            negative.setVisibility(View.GONE);
        }
    
        public void setPositiveButton(String buttonText, View.OnClickListener listener) {
            positive.setText(buttonText);
            positive.setOnClickListener(listener);
            positive.setVisibility(View.VISIBLE);
        }
    
        public void setNegativeButton(String buttonText, View.OnClickListener listener) {
            negative.setText(buttonText);
            negative.setOnClickListener(listener);
            negative.setVisibility(View.VISIBLE);
        }
    }
    
    0 讨论(0)
  • 2020-12-19 19:08

    You can add the two buttons to the custom layout that you are using for dialog(i.e. dialog_change). And then you can access them after creating the dialog as follows:

    Dialog myDialog = new Dialog(Overview.this);
    View view = LayoutInflater.from(context).inflate(R.layout.dialog_change,null);
    myDialog.setContentView(view);
    myDialog.setTitle("My Custom Dialog Title");
    
    Button button1 = (Button)view.findViewById(R.id.button1);
    button1.setOnClickListener(new OnClickListener() {
    
        @Override
        public void onClick(View v){
            dialog.dismiss();
        }
    });
    //Similarly for the second button
    myDialog.show();
    
    0 讨论(0)
提交回复
热议问题