34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 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: classes.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));
 | |
|     }
 | |
| }
 |