0

嗨,
我正在开发一个小型 android 应用程序。应用程序接收来自其他手机的短信。我想根据用户当前设置在接收消息事件上播放默认铃声和振动警报。即如果手机不静音且震动关闭,则播放铃声,若手机静音且震动开启,则应震动onRecieve 事件。
谢谢

4

1 回答 1

4

帮派,

设置通知后,您只需添加标志以指示您希望默认声音播放和振动。

Notification notification = new Notification(android.R.drawable.ic_popup_reminder,
            "My Notification", System.currentTimeMillis());
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
于 2011-04-22T14:23:11.283 回答