[Kotlin]Custom Dialog Fragment 화면 꽉차게 출력하기
2019. 8. 30. 15:06ㆍCoding/Android Studio
728x90
dialogFragment를 호출하기전에 style속성을 줘서 꽉차게 만든다.
배경이 투명한걸 원하면 아래의 [android.R.style.Theme_NoTitleBar_Fullscreen] 대신에 [android.R.style.Theme_Translucent_NoTitleBar_Fullscreen]를 넣어주면 된다.
var dialog = TestDialogFragment.newInstance()
dialog.setStyle( DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_NoTitleBar_Fullscreen );
dialog.show(supportFragmentManager, "tag")
728x90
'Coding > Android Studio' 카테고리의 다른 글
[Android] Manifest에서 한번에 모든 페이지에 화면전환 효과 적용하기 (0) | 2019.09.27 |
---|---|
[Kotlin]Switch 색상 바꾸기 (0) | 2019.09.04 |
[Kotlin]Only the original thread that created a view hierarchy can touch its views. (0) | 2019.08.20 |
[Kotlin] Android Studio Kotlin xml code 정렬이 한줄로 나올때 (0) | 2019.08.14 |
[Kotlin]TextView 등 글자색 지정 방법 getColor is deprecated (0) | 2019.08.06 |