Added ignore tag

This commit is contained in:
M66B
2020-11-23 15:23:39 +01:00
parent 623bade43e
commit eb7a02b0bd
2 changed files with 3 additions and 0 deletions

View File

@@ -760,6 +760,8 @@ public class Helper {
static void setViewsEnabled(ViewGroup view, boolean enabled) {
for (int i = 0; i < view.getChildCount(); i++) {
View child = view.getChildAt(i);
if ("ignore".equals(child.getTag()))
continue;
if (child instanceof Spinner ||
child instanceof EditText ||
child instanceof CheckBox ||