RecyclerView実装WIP

This commit is contained in:
r-ca 2023-12-17 14:18:50 +09:00
parent e3ebe25cdd
commit 14ba4f0c93
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -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;
}
}