Android - change dialog title style of all dialogs in application

前端 未结 3 772
花落未央
花落未央 2020-12-10 12:08

Is there a way I can change all the alert dialogs appearing in my Android application? I want to change the dialogs that are system generated as well (like the Edit Text

3条回答
  •  青春惊慌失措
    2020-12-10 12:49

    import android.app.ProgressDialog;
    import android.content.Context;
    import android.view.animation.Animation;
    
    public class MyProgressDialog extends ProgressDialog {
    
        public MyProgressDialog(Context context) {
            super(context,R.style.NewDialog);
    
            // TODO Auto-generated constructor stub
        }
    
    }
    

    //RESOURCE STYLE FILE res->values->mydialog.xml

    
    
       
    
    

    //AND USE THIS CODE ANYWHERE IN YOUR APPLICATION TO GET CUSTOM PROGRESS DIALOG

    MyProgressDialog pd = new MyProgressDialog(YouActivity.this);
    pd.setMessage("Loading. Please wait...");
    pd.show();
    

    Thanks :)

提交回复
热议问题