I want to call this activity from a class extending BroadcastReceiver but its not working
Intent i = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD); co
Add the FLAG_ACTIVITY_NEW_TASK flag to your intent, eg:
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);