How to change theme for AlertDialog

前端 未结 15 2076
名媛妹妹
名媛妹妹 2020-11-22 09:14

I was wondering if someone could help me out. I am trying to create a custom AlertDialog. In order to do this, I added the following line of code in styles.xml



        
15条回答
  •  不要未来只要你来
    2020-11-22 09:43

    In Dialog.java (Android src) a ContextThemeWrapper is used. So you could copy the idea and do something like:

    AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.AlertDialogCustom));

    And then style it like you want:

    
    
        
    
    

提交回复
热议问题