I want to launch the "dual sim settings" page from an android widget using xamarin android ui. So far I'm able to launch (for an example) DisplaySettings with
var pN=Android.Provider.Settings.ActionDisplaySettings;
var launchInt=new Intent(pN);
launchInt.AddFlags(ActivityFlags.NewTask);
context.StartActivity(launchInt);
My phone offers dual sim settings. I can even add a widget for it on the home screen. Further using the App "Shortcut Creator" I managed to create a shortcut and the information says: Action: android.intent.action.Main Flags: new_task, clear_top, receiver_foreground Component: com.android.settings/.DualCardSettings
But I have no idea how to call / launch this page.