Skip to content

Instantly share code, notes, and snippets.

@okanaydin
Created December 12, 2020 16:08
Show Gist options
  • Save okanaydin/bc111d1387fc2ef11ce904cf9ba4ca44 to your computer and use it in GitHub Desktop.
Save okanaydin/bc111d1387fc2ef11ce904cf9ba4ca44 to your computer and use it in GitHub Desktop.
ActivityMainBinding
class MainActivity : BaseActivity<ActivityMainBinding>() {
override fun getViewBinding(): ActivityMainBinding = ActivityMainBinding.inflate(layoutInflater)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding.textView.text = "Hello world"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment