Android Programmatically open Settings-> Security tab on Button Click
Try this instead:
Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
startActivity(intent);
Try this instead:
Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
startActivity(intent);