Skip to content

Instantly share code, notes, and snippets.

@PondThaitay
Last active December 1, 2016 19:36
Show Gist options
  • Save PondThaitay/13fbbc3094988c5e7ed766049743f56b to your computer and use it in GitHub Desktop.
Save PondThaitay/13fbbc3094988c5e7ed766049743f56b to your computer and use it in GitHub Desktop.
public class FragmentExample extends Fragment {
private FragmentExampleBinding binding;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
binding = DataBindingUtil.inflate(inflater, R.layout.fragment_example, container, false);
return binding.getRoot();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment