接收文字信息时,Android播放默认铃声和振动提示

时间:2011-04-22 13:37:03

标签: android ringtone vibration

HI,
我正在开发一个小型的Android应用程序。应用程序接收来自其他手机的短信。我想根据用户当前设置播放默认铃声和振动警报onReceiving Messages事件。即如果手机没有静音且振动已关闭,则会播放铃声,如果手机静音且振动已开启,则应在振动时振动。
谢谢

1 个答案:

答案 0 :(得分: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;