From 4c40f9926e90cbc99348271cdcfd9b1c901fed5f Mon Sep 17 00:00:00 2001 From: r-ca Date: Sun, 14 Jan 2024 13:45:43 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=95=E3=83=A9=E3=82=B0=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=83=88=E4=BD=9C=E6=88=90,=20=E5=BC=95=E6=95=B0=E9=96=A2?= =?UTF-8?q?=E4=BF=82=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DebugMenuVcsGeneralActionFragment.java | 42 +++++++++++++++++++ ...fragment_debug_menu_vcs_general_action.xml | 14 +++++++ 2 files changed, 56 insertions(+) create mode 100644 feature/debug/src/main/java/one/nem/lacerta/feature/debug/DebugMenuVcsGeneralActionFragment.java create mode 100644 feature/debug/src/main/res/layout/fragment_debug_menu_vcs_general_action.xml diff --git a/feature/debug/src/main/java/one/nem/lacerta/feature/debug/DebugMenuVcsGeneralActionFragment.java b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/DebugMenuVcsGeneralActionFragment.java new file mode 100644 index 00000000..7b662a7b --- /dev/null +++ b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/DebugMenuVcsGeneralActionFragment.java @@ -0,0 +1,42 @@ +package one.nem.lacerta.feature.debug; + +import android.os.Bundle; + +import androidx.fragment.app.Fragment; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; + +/** + * A simple {@link Fragment} subclass. + * Use the {@link DebugMenuVcsGeneralActionFragment#newInstance} factory method to + * create an instance of this fragment. + */ +public class DebugMenuVcsGeneralActionFragment extends Fragment { + + public DebugMenuVcsGeneralActionFragment() { + // Required empty public constructor + } + + public static DebugMenuVcsGeneralActionFragment newInstance() { + DebugMenuVcsGeneralActionFragment fragment = new DebugMenuVcsGeneralActionFragment(); + Bundle args = new Bundle(); + fragment.setArguments(args); + return fragment; + } + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + } + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + // Inflate the layout for this fragment + View view = inflater.inflate(R.layout.fragment_debug_menu_vcs_general_action, container, false); + + return view; + } +} \ No newline at end of file diff --git a/feature/debug/src/main/res/layout/fragment_debug_menu_vcs_general_action.xml b/feature/debug/src/main/res/layout/fragment_debug_menu_vcs_general_action.xml new file mode 100644 index 00000000..edcc386e --- /dev/null +++ b/feature/debug/src/main/res/layout/fragment_debug_menu_vcs_general_action.xml @@ -0,0 +1,14 @@ + + + + + + + \ No newline at end of file