Try using Theme_Translucent_NoTitleBar_Fullscreen

pull/1726/head
takahirom 10 months ago
parent cbd33c33c6
commit 5d0b63ad11
No known key found for this signature in database
GPG Key ID: 74C748A90802F104

@ -16,6 +16,7 @@
package com.google.samples.apps.nowinandroid.uitesthiltmanifest
import android.os.Bundle
import androidx.activity.ComponentActivity
import dagger.hilt.android.AndroidEntryPoint
@ -24,4 +25,10 @@ import dagger.hilt.android.AndroidEntryPoint
* for https://github.com/google/dagger/issues/3394
*/
@AndroidEntryPoint
class HiltComponentActivity : ComponentActivity()
class HiltComponentActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
setTheme(android.R.style.Theme_Translucent_NoTitleBar_Fullscreen)
super.onCreate(savedInstanceState)
}
}

Loading…
Cancel
Save