Do i have to use "Start Activity" or "Start Service" and what kind of syntax does it need?
Code: Select all
Settings.ACTION_ACCESSIBILITY_SETTINGS

Also trial 'n error'd some code
Code: Select all
settings = callJavaConstructor("android.provider.Settings", "Settings()");
ACTION_ACCESSIBILITY_SETTINGS = getJavaStaticField("android.provider.Settings", "ACTION_ACCESSIBILITY_SETTINGS");
//callJavaConstructor("android.content.Intent", "Intent(java.lang.Class)", ACTION_ACCESSIBILITY_SETTINGS);
intent = callJavaConstructor("android.content.Intent", "Intent()");
context = getContext();
callJavaMethod(intent, "android.content.Intent", "setClass(android.content.Context, java.lang.Class)", context, ACTION_ACCESSIBILITY_SETTINGS);