I have found out how to bring up a ringtone chooser with…
Intent intent = new Intent(RingtoneManager.ACTION_RINGTONE_PICKER);
startActivityForResult( intent, 999);
…but can not find the equivalent for choosing the alarm sound. Is it a similar method?
You can have your flag (
ACTION_RINGTONE_PICKER) combine withEXTRA_RINGTONE_TYPEandTYPE_ALARM. Hope it helps 🙂