Guest User

Untitled

a guest
Jan 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. class FragmentTwo : Fragment() {
  2.  
  3. override fun onCreateView(
  4. inflater: LayoutInflater, container: ViewGroup?,
  5. savedInstanceState: Bundle?
  6. ): View? {
  7. return inflater.inflate(R.layout.fragment_fragment_two, container, false).apply {
  8. this.back_to_fragment_one.setOnClickListener {
  9. RxBus.instance.publish(FRAGMENT_ONE_TAG)
  10. }
  11.  
  12. this.finish_app.setOnClickListener {
  13. RxBus.instance.publish(FINISH_APP_TAG)
  14. }
  15. }
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment