WIP Repository Debugger作成

This commit is contained in:
ろむねこ 2023-12-12 11:40:26 +09:00
parent 70a7ca5d08
commit a2c4710654
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -82,6 +82,9 @@ public class DebugMenuFragment extends Fragment {
Toast.makeText(getContext(), getContext().getExternalFilesDir(null).toPath().toString(), Toast.LENGTH_SHORT).show(); Toast.makeText(getContext(), getContext().getExternalFilesDir(null).toPath().toString(), Toast.LENGTH_SHORT).show();
}); });
view.findViewById(R.id.btn_debug_menu_go_to_repository_debugger).setOnClickListener( v -> {
Navigation.findNavController(view).navigate(R.id.action_debugMenuFragment_to_debugRepositoryDebuggerFragment);
});
} }
} }