This commit is contained in:
Epic Studios 2024-01-26 05:05:38 +02:00
parent e724a517a8
commit a6d138dfb8
47 changed files with 1169 additions and 954 deletions

View file

@ -3,6 +3,7 @@ package com.vectras.vm.Fragment;
import android.os.Bundle;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.MenuItem;
@ -36,7 +37,9 @@ public class DialogSettingsFragment extends Fragment {
//Check to see which item was being clicked and perform appropriate action
int id = menuItem.getItemId();
if (id == R.id.uiInterface) {
final FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragment, new UiSettingsFragment(), "UiSettingsFragmentTag");
ft.commit();
}
return false;
}