just to save works and use another computer to code

This commit is contained in:
hyb1996
2017-11-27 21:11:49 +08:00
parent 00c972ce8c
commit 9951ffae7a
30 changed files with 780 additions and 72 deletions

View File

@@ -144,11 +144,13 @@ public class UiObject extends AccessibilityNodeInfoCompat {
}
public String className() {
return getClassName().toString();
CharSequence d = getClassName();
return d == null ? null : d.toString();
}
public String packageName() {
return getPackageName().toString();
CharSequence d = getPackageName();
return d == null ? null : d.toString();
}
public int depth() {