Missing buttons on AlertDialog | Android 7.0 (Nexus 5x)

前端 未结 9 1806
别那么骄傲
别那么骄傲 2020-12-05 13:19

I am trying to create an AlertDialog but the buttons are not showing. Only seeing this issue in Android 7.0:

final AlertDialog.Builder builder =         


        
9条回答
  •  一个人的身影
    2020-12-05 13:34

    What worked for me was in styles.xml:

    
    

    and

    
    

    and in your program:

    final AlertDialog.Builder alertDialog = new AlertDialog.Builder(getActivity(), R.style.LightDialogTheme);
    

提交回复
热议问题