Set Android Theme.Light for Alert Dialog

前端 未结 5 798
[愿得一人]
[愿得一人] 2021-02-12 03:50

I am trying to set the android Theme.Light theme for my alert dialog, but with no success so far. After reading a few tutorials I gathered that using Al

5条回答
  •  北荒
    北荒 (楼主)
    2021-02-12 04:05

    This is what I did. And it worked for me

    AlertDialog.Builder builder = new AlertDialog.Builder(context,R.style.Theme_AppCompat_Light_Dialog);
    

提交回复
热议问题