프로그래밍/Android-Java
[ANDROID] Dialog 밖의 어두운 배경 없애기
채연2
2020. 12. 14. 11:44
dialog를 생성 후 띄우면 dialog를 제외한 나머지 배경은 어둡게 변한다...
나는 어두운 배경으로 변하는게 싫어 없애는 방법을 찾았다.
dialog = builder.create();
dialog.getWindow().setDimAmount(0); // background remove
dialog.show();
다음과 같이 dialog.getWindow().setDimAmount(0); 를 추가해주면 !!! 배경이 어둡게 변하지 않는다 !!!
320x100