Android/Kotlin
[ 에러 해결 ] java.lang.NullPointerException: Attempt to invoke virtual method 'android.view.WindowInsetsController com.android.internal.policy.DecorView.getWindowInsetsController()' on a null object reference
SangHoonE
2021. 11. 3. 13:31
java.lang.NullPointerException: Attempt to invoke virtual method
'android.view.WindowInsetsController com.android.internal.policy.DecorView
.getWindowInsetsController()'on a null object reference
전체화면 적용 중에
해당되는 에러가 발생하였다.
이 이유는 onCreate() 안에서 setContentView가 선언되기 전에 전체화면 적용하는 코드를 작성하였기 때문이다.
이와 같이 setContentView(binding.root) 가 끝난 후에 해당 내용을 작성해주는 것으로 이동시키면 해결.
How to set fullscreen in Android R?
I need to put a screen in fullscreen in my app. For this I am using this code: override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) requestWindowFeature(W...
stackoverflow.com
반응형