Skip to content

Instantly share code, notes, and snippets.

@ShikherVerma
Last active September 17, 2017 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShikherVerma/a17841f61c20761dc60381eb2b14a8d5 to your computer and use it in GitHub Desktop.
Save ShikherVerma/a17841f61c20761dc60381eb2b14a8d5 to your computer and use it in GitHub Desktop.
private static Unbinder createBinding(@NonNull Object target, @NonNull View source) {
Class<?> targetClass = target.getClass();
if (debug) Log.d(TAG, "Looking up binding for " + targetClass.getName());
Constructor<? extends Unbinder> constructor = findBindingConstructorForClass(targetClass);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment