Android-How to set Custom notification sound for GCM messages
问题 I want to set custom Alert sound for GCM notifications..Here is my current coding.. Uri notification = RingtoneManager .getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); Ringtone r = RingtoneManager.getRingtone( context.getApplicationContext(), notification); if(r!= null){ r.play(); } Intent i = new Intent(context.getApplicationContext(), CjStartingActivity.class); I have mp3 file in Res folder (Res.raw.mi.mp3). 回答1: Use following Code:- private void sendNotification(String msg) {