- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
36 lines
774 B
Java
36 lines
774 B
Java
package androidx.appcompat.view.menu;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
import androidx.annotation.RestrictTo;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
/* loaded from: classes.dex */
|
|
public interface MenuView {
|
|
|
|
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);
|
|
}
|