在我的Android应用程序中,我想通过声音通知用户而不显示通知。那可能吗 ?
Notification n = new Notification();
n.icon = com.android.mms.R.drawable.wap_message;
n.defaults |= Notification.DEFAULT_SOUND;
n.flags = Notification.FLAG_AUTO_CANCEL;
这是我用来显示通知的代码,所以我评论了通知的图标和标志如下
Notification n = new Notification();
//n.icon = com.android.mms.R.drawable.wap_message;
n.defaults |= Notification.DEFAULT_SOUND;
//n.flags = Notification.FLAG_AUTO_CANCEL;
但它没有用。
答案 0 :(得分:1)
为什么不使用MediaPlayer
代替Notification
来播放通知声音。如果您使用Notication,则会显示图标。在您的情况下,使用MediaPlayer
是更好的选择。