Clarify AOSP AOD compatibility

This commit is contained in:
ajp_anton
2026-07-07 15:09:02 +00:00
parent 87de1c45e6
commit 282e9a9283
2 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ public final class ViewIdNames {
}
public static String idName(View view) {
if (view == null || view.getId() == View.NO_ID) {
if (view == null || view.getId() == View.NO_ID || (view.getId() >>> 24) == 0) {
return "";
}
try {