안드로이드 프래그먼트다이얼로그 사이즈 조절

uknow·2021년 9월 28일
0

안드로이드

목록 보기
2/5

안드로이드 프래그먼트의 팝업을 사이징 할 수 있는 코드

    @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);
    }```
    
profile
으르렁ㅇㅇ컹컹ㅋㅋ크르르응ㅋ킁럴ㅇ왈ㄹ왈왈왈ㄹㄹㄹ!!!!!

0개의 댓글