在Android中,我们可以使用WebView来在应用中显示网页。而Splash Screen可以在应用启动时显示一个启动画面,提升用户体验。在此基础上,我们可以将主题进行改变。以下是使用Kotlin编写的示例代码:
#FFFFFF
#000000
class SplashActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
setTheme(R.style.SplashTheme) // Set the splash screen theme
super.onCreate(savedInstanceState)
// Choose the appropriate layout based on the theme
setContentView(if (isDarkTheme()) R.layout.activity_main_dark else R.layout.activity_main_light)
// Configure and load the WebView
val webView = findViewById(R.id.webView)
webView.settings.javaScriptEnabled =