Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaPramod
Created March 25, 2018 20:33
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 ChaitanyaPramod/ac1c6c0d4ff28fc03e8edeb5c861ea7e to your computer and use it in GitHub Desktop.
Save ChaitanyaPramod/ac1c6c0d4ff28fc03e8edeb5c861ea7e to your computer and use it in GitHub Desktop.
...
public class MainActivity_ViewBinding implements Unbinder {
private MainActivity target;
@UiThread
public MainActivity_ViewBinding(MainActivity target) {
this(target, target.getWindow().getDecorView());
}
@UiThread
public MainActivity_ViewBinding(MainActivity target, View source) {
this.target = target;
target.myTextView = Utils.findRequiredViewAsType(source, R.id.my_text_view, "field 'myTextView'", TextView.class);
}
@Override
@CallSuper
public void unbind() {
...
this.target = null;
target.myTextView = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment