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

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

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

4条回答
  •  -上瘾入骨i
    2021-02-19 02:05

    if you're using DialogFragment to build AlertDialog you may set MATCH_PARENT on LayoutParams in onResume():

    @Override
    public void onResume() {
        super.onResume();
        ViewGroup.LayoutParams params = getDialog().getWindow().getAttributes();
        params.width = WindowManager.LayoutParams.MATCH_PARENT;
        params.height = WindowManager.LayoutParams.MATCH_PARENT;
        getDialog().getWindow().setAttributes((android.view.WindowManager.LayoutParams) params);
    }
    

提交回复
热议问题