继承我在我的C2DM接收器中使用的代码:
notificationmanager nm = (notificationmanager) context.getSystemService(Context.NOTIFICATION_SERVICE);Notification notif = new Notification(....)....String ringtone = PreferenceManager.getDefaultSharedPreferences(context).getString("ringtone","");notif.sound = Uri.parse(ringtone);notif.audioStreamType = AudioManager.STREAM_NOTIFICATION;nm.notify(1,notif);解决方法 这应该做
....mediaPlayer.start();....final Handler handler = new Handler(); handler.postDelayed(new Runnable() { @OverrIDe public voID run() { if (mediaPlayer.isPlaying()) mediaPlayer.stop(); } },timeout);总结
以上是内存溢出为你收集整理的30秒后如何停止android通知铃声?全部内容,希望文章能够帮你解决30秒后如何停止android通知铃声?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)