1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| @ViewDebug.ExportedProperty(category = "seniorzhai") int x = 1;
@Override @ViewDebug.ExportedProperty(category = "seniorzhai") public boolean isFocused() { return true; }
@Override @ViewDebug.ExportedProperty(category = "seniorzhai") public boolean isFocused() { return true; }
@ViewDebug.ExportedProperty(category = "seniorzhai",resolveld = true) int b = R.id.no;
@Override @ViewDebug.ExportedProperty(category = "seniorzhai", mapping = { @ViewDebug.IntToString(from = VISIBLE, to = "SENIOR_VISIBLE"), @ViewDebug.IntToString(from = INVISIBLE, to = "SENIOR_INVISIBLE"), @ViewDebug.IntToString(from = GONE, to = "SENIOR_GONE") }) public int getVisibility() { return super.getVisibility(); }
@ViewDebug.ExportedProperty(category = "seniorzhai", indexMapping = { @ViewDebug.IntToString(from = 0, to = "SENIOR_FIRST"), @ViewDebug.IntToString(from = 1, to = "SENIOR_SECOND"), @ViewDebug.IntToString(from = 2, to = "SENIOR_THIRD") }) int[] elements = new int[] {123, 223, 323};
|