Android/Technic
전체화면에서 Dialog 띄우면 전체화면이 이상해지는 현상
등촌동 꼬북이
2022. 9. 30. 14:14
전체화면일 때 Swipe하면 아래의 Navigation bar가 나타나게 변화하는데 Dialog가 나오면 Navigation bar가 노출되면서 전체적인 비율이 깨지게 된다..
이 코드를 넣으면 Navigation bar가 노출되지 않아 일그러지는 현상이 발생하지 않는다.
val builder = AlertDialog.Builder(context, ADAPTED_THEME)
.setIcon(context.applicationInfo.icon)
.setTitle(context.getString(R.string.app_name))
.setMessage(contents)
.setCancelable(false)
.setPositiveButton(context.getString(R.string.text_ok), positiveClicked)
val dialog = builder.create()
dialog.window?.setFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE, WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE)
dialog.window?.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM or WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
dialog.show()