mirror of
				https://github.com/lacerta-doc/Lacerta.git
				synced 2025-10-31 07:20:48 +00:00 
			
		
		
		
	RecyclerView実装WIP
This commit is contained in:
		
							parent
							
								
									e3ebe25cdd
								
							
						
					
					
						commit
						14ba4f0c93
					
				| @ -3,11 +3,17 @@ package one.nem.lacerta.feature.debug; | ||||
| import android.os.Bundle; | ||||
| 
 | ||||
| import androidx.fragment.app.Fragment; | ||||
| import androidx.recyclerview.widget.RecyclerView; | ||||
| 
 | ||||
| import android.view.LayoutInflater; | ||||
| import android.view.View; | ||||
| import android.view.ViewGroup; | ||||
| 
 | ||||
| import java.util.ArrayList; | ||||
| import java.util.List; | ||||
| 
 | ||||
| import one.nem.lacerta.feature.debug.common.model.DebugMenuListItem; | ||||
| 
 | ||||
| /** | ||||
|  * A simple {@link Fragment} subclass. | ||||
|  * Use the {@link DebugMenuTopFragment#newInstance} factory method to | ||||
| @ -33,6 +39,13 @@ public class DebugMenuTopFragment extends Fragment { | ||||
|     public View onCreateView(LayoutInflater inflater, ViewGroup container, | ||||
|                              Bundle savedInstanceState) { | ||||
|         // Inflate the layout for this fragment | ||||
|         return inflater.inflate(R.layout.fragment_debug_menu_top, container, false); | ||||
|         View view = inflater.inflate(R.layout.fragment_debug_menu_top, container, false); | ||||
| 
 | ||||
|         RecyclerView recyclerView = view.findViewById(R.id.debug_menu_recycler_view); | ||||
| 
 | ||||
|         List<DebugMenuListItem> debugMenuListItems = new ArrayList<>(); | ||||
|         debugMenuListItems.add(new DebugMenuListItem("Meta Data", "View meta data", R.id.action_debugMenuTopFragment_to_debugMenuMetaDataFragment, true)); | ||||
| 
 | ||||
|         return view; | ||||
|     } | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user