Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SuperActivity {
- public override fun onCreate(savedInstanceState: Bundle?) {
- setTheme(R.style.yourTheme)
- super.onCreate(savedInstanceState)
- }
- }
- class DetailActivity : SuperActivity {
- public override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment