mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
33 lines
1 KiB
Java
33 lines
1 KiB
Java
package com.google.android.material.internal;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import androidx.appcompat.view.menu.MenuBuilder;
|
|
import androidx.appcompat.view.menu.MenuView;
|
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class NavigationMenuView extends RecyclerView implements MenuView {
|
|
@Override // androidx.appcompat.view.menu.MenuView
|
|
public int getWindowAnimations() {
|
|
return 0;
|
|
}
|
|
|
|
@Override // androidx.appcompat.view.menu.MenuView
|
|
public void initialize(MenuBuilder menuBuilder) {
|
|
}
|
|
|
|
public NavigationMenuView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public NavigationMenuView(Context context, AttributeSet attributeSet) {
|
|
this(context, attributeSet, 0);
|
|
}
|
|
|
|
public NavigationMenuView(Context context, AttributeSet attributeSet, int i) {
|
|
super(context, attributeSet, i);
|
|
setLayoutManager(new LinearLayoutManager(context, 1, false));
|
|
}
|
|
}
|