首页 > 代码库 > android DialogFragment 设置大小

android DialogFragment 设置大小

DialogFragment   通过 xmL 是无法设置大小的

经过测试 只能在 onResume 方法中,进行设置,代码如下:



public void onResume() {

super.onResume();
getDialog().getWindow().setLayout(750, 600);
}

android DialogFragment 设置大小