Skip to content

Instantly share code, notes, and snippets.

@objcode
Last active January 27, 2020 00:49
Show Gist options
  • Save objcode/03c88e60dca19a7ddd1aaab83b4b30b3 to your computer and use it in GitHub Desktop.
Save objcode/03c88e60dca19a7ddd1aaab83b4b30b3 to your computer and use it in GitHub Desktop.
private ActivityAwesomeBinding(@NonNull ConstraintLayout rootView, @NonNull Button button,
@NonNull TextView subtext, @NonNull TextView title) { … }
@NonNull
public static ActivityAwesomeBinding inflate(@NonNull LayoutInflater inflater) {
/* Edited: removed call to overload inflate(inflater, parent, attachToParent) */
View root = inflater.inflate(R.layout.activity_awesome, null, false);
return bind(root);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment