Last active
July 7, 2018 18:39
-
-
Save pedromassango/d7210282556487ca81efcfd80cc55a40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SampleActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_sample) | |
// set toolbar as actionBar | |
setSupportActionBar(home_toolbar) | |
title = " " | |
// build backdrop view | |
backdrop_view | |
.withToolbar(home_toolbar) // set a toolbar in backdrop | |
.build() // do not forget to call this function | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment