Created
November 25, 2021 00:32
-
-
Save gabrielbmoro/2f09ab1a111a002299e7b5130f4ad28f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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