PopupMenu: use AOSP MenuInflater and support item visibility

This commit is contained in:
Julian Winkler
2024-03-20 22:09:56 +01:00
parent 0592b71489
commit dda3063e79
5 changed files with 740 additions and 124 deletions

View File

@@ -1,5 +1,13 @@
package android.view;
public class InflateException extends Exception {
public class InflateException extends RuntimeException {
public InflateException(String string, Exception e) {
super(string, e);
}
public InflateException(String string) {
super(string);
}
}