Skip to content

Instantly share code, notes, and snippets.

@wajahatkarim3
Created December 25, 2019 10:15
Show Gist options
  • Save wajahatkarim3/a7523a6c2f9e21ebe7c49c977b328fe2 to your computer and use it in GitHub Desktop.
Save wajahatkarim3/a7523a6c2f9e21ebe7c49c977b328fe2 to your computer and use it in GitHub Desktop.
package com.wajahatkarim.splashscreen
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
class SplashThemeActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
setTheme(R.style.AppTheme)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splash_theme)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment