This commit is contained in:
r-ca 2024-01-14 13:59:06 +09:00
parent 623be098d1
commit a0baaf02cb
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -8,11 +8,15 @@ import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import dagger.hilt.android.AndroidEntryPoint;
/** /**
* A simple {@link Fragment} subclass. * A simple {@link Fragment} subclass.
* Use the {@link DebugMenuVcsGeneralActionFragment#newInstance} factory method to * Use the {@link DebugMenuVcsGeneralActionFragment#newInstance} factory method to
* create an instance of this fragment. * create an instance of this fragment.
*/ */
@AndroidEntryPoint
public class DebugMenuVcsGeneralActionFragment extends Fragment { public class DebugMenuVcsGeneralActionFragment extends Fragment {
public DebugMenuVcsGeneralActionFragment() { public DebugMenuVcsGeneralActionFragment() {
@ -37,6 +41,10 @@ public class DebugMenuVcsGeneralActionFragment extends Fragment {
// Inflate the layout for this fragment // Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_debug_menu_vcs_general_action, container, false); 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; return view;
} }
} }