How to make an Alert dialog in full screen in Android?

前端 未结 4 2205
半阙折子戏
半阙折子戏 2021-02-19 01:16

How to make an Alert Dialog in full screen in Android?

4条回答
  •  我寻月下人不归
    2021-02-19 02:06

    【Method 1 | Use Custom Style】

    In styles file:

    
    

    In java file:

    AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.myFullscreenAlertDialogStyle);   //second argument
    

    【Method 2 | Use Built-In Style】

    In java file:

    AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getActivity(), android.R.style.Theme_Material_Light_NoActionBar_Fullscreen);
    
    • This method will make the button text become green color, you can use dialog.getButton().setTextColor() to change it.

提交回复
热议问题