Skip to content

Instantly share code, notes, and snippets.

@wellingtoncosta
Last active January 24, 2019 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wellingtoncosta/1790d2f06ef14cb123c007efab18bd2f to your computer and use it in GitHub Desktop.
Save wellingtoncosta/1790d2f06ef14cb123c007efab18bd2f to your computer and use it in GitHub Desktop.
class FragmentOne : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
return inflater.inflate(R.layout.fragment_fragment_one, container, false).apply {
this.go_to_fragment_two.setOnClickListener {
RxBus.instance.publish(FRAGMENT_TWO_TAG)
}
this.finish_app.setOnClickListener {
RxBus.instance.publish(FINISH_APP_TAG)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment