mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
34 lines
717 B
Java
34 lines
717 B
Java
package androidx.appcompat.view.menu;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface MenuView {
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface ItemView {
|
|
MenuItemImpl getItemData();
|
|
|
|
void initialize(MenuItemImpl menuItemImpl, int i);
|
|
|
|
boolean prefersCondensedTitle();
|
|
|
|
void setCheckable(boolean z);
|
|
|
|
void setChecked(boolean z);
|
|
|
|
void setEnabled(boolean z);
|
|
|
|
void setIcon(Drawable drawable);
|
|
|
|
void setShortcut(boolean z, char c);
|
|
|
|
void setTitle(CharSequence charSequence);
|
|
|
|
boolean showsIcon();
|
|
}
|
|
|
|
int getWindowAnimations();
|
|
|
|
void initialize(MenuBuilder menuBuilder);
|
|
}
|