Last active
January 27, 2020 00:49
-
-
Save objcode/03c88e60dca19a7ddd1aaab83b4b30b3 to your computer and use it in GitHub Desktop.
This file contains 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 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