Skip to content

Instantly share code, notes, and snippets.

@gabrielbmoro
Created November 25, 2021 00:32
Show Gist options
  • Save gabrielbmoro/2f09ab1a111a002299e7b5130f4ad28f to your computer and use it in GitHub Desktop.
Save gabrielbmoro/2f09ab1a111a002299e7b5130f4ad28f to your computer and use it in GitHub Desktop.
private ResultProfileBinding binding;
@Override
public View onCreateView (LayoutInflater inflater,
ViewGroup container,
Bundle savedInstanceState) {
binding = ResultProfileBinding.inflate(inflater, container, false);
View view = binding.getRoot();
return view;
}
@Override
public void onDestroyView() {
super.onDestroyView();
binding = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment