I'm able to play a ringtone using the following code
rone = RingtoneManager.getRingtone(this.getContext(), Uri.parse(one));
rone.play();
How do I check if the audio file pointed by uri exists? When the user deletes a file from their phone, I'm not able to play the ringtone and it crashes.