Skip to content

Instantly share code, notes, and snippets.

@tpakis
Created January 1, 2021 21:29
Show Gist options
  • Save tpakis/cc261358e35e3b1ef9be3b2663edc7a0 to your computer and use it in GitHub Desktop.
Save tpakis/cc261358e35e3b1ef9be3b2663edc7a0 to your computer and use it in GitHub Desktop.
class Step1Fragment : ABTestFragment() {
private val button: Button by bindView(R.id.button)
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
return inflater.inflate(R.layout.fragment_step1_baseline, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
button.text = ...
button.setOnClickListener {
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment