Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 24, 2019 01:35
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 parzibyte/5c787d3778344f8084767f61b1710fd2 to your computer and use it in GitHub Desktop.
Save parzibyte/5c787d3778344f8084767f61b1710fd2 to your computer and use it in GitHub Desktop.
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view: View = inflater.inflate(R.layout.fragment_deudas, container, false)
fabAgregarDeuda = view.findViewById(R.id.fabAgregarDeuda)
fabAgregarDeuda.setOnClickListener {
// Aquí código del click :)
}
return view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment