안드로이드 프래그먼트의 팝업을 사이징 할 수 있는 코드
@Override
public void onStart() {
super.onStart();
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(getDialog().getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.MATCH_PARENT;
lp.height = WindowManager.LayoutParams.WRAP_CONTENT;
Window window = getDialog().getWindow();
window.setAttributes(lp);
}```