Full screen DialogFragment

前端 未结 10 2178
执笔经年
执笔经年 2021-02-04 02:26

I am trying to create a DialogFragment with a width of MATCH_PARENT so the dialog is nearly full screen (leaving the padding around the edges for the floating look). I have see

10条回答
  •  感动是毒
    2021-02-04 03:01

    this answer help me How to set DialogFragment's width and height?

    int width = activity.getResources().getDisplayMetrics().widthPixels;
    int height = activity.getResources().getDisplayMetrics().heightPixels;
    content.setLayoutParams(new LinearLayout.LayoutParams(width, height));
    

提交回复
热议问题