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/0e9784b1a428b2f3c65b0b6ba3657a2f to your computer and use it in GitHub Desktop.
Save wellingtoncosta/0e9784b1a428b2f3c65b0b6ba3657a2f to your computer and use it in GitHub Desktop.
class FragmentTwo : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
return inflater.inflate(R.layout.fragment_fragment_two, container, false).apply {
this.back_to_fragment_one.setOnClickListener {
RxBus.instance.publish(FRAGMENT_ONE_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