From a0baaf02cb145df71a5c0c772b097fe41a92a323 Mon Sep 17 00:00:00 2001 From: r-ca Date: Sun, 14 Jan 2024 13:59:06 +0900 Subject: [PATCH] WIP --- .../feature/debug/DebugMenuVcsGeneralActionFragment.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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 index 7b662a7b..0e6c60c9 100644 --- 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 @@ -8,11 +8,15 @@ import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; +import dagger.hilt.android.AndroidEntryPoint; + /** * A simple {@link Fragment} subclass. * Use the {@link DebugMenuVcsGeneralActionFragment#newInstance} factory method to * create an instance of this fragment. */ + +@AndroidEntryPoint public class DebugMenuVcsGeneralActionFragment extends Fragment { public DebugMenuVcsGeneralActionFragment() { @@ -37,6 +41,10 @@ public class DebugMenuVcsGeneralActionFragment extends Fragment { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_debug_menu_vcs_general_action, container, false); + view.findViewById(R.id.add_sample_log_rev_button).setOnClickListener(v -> { + + }); + return view; } } \ No newline at end of file