2

我已经编写了设置警报的代码。时间一到,我就能成功地从我的警报接收器班上举杯敬酒。

现在我想播放默认的手机铃声以及振动你的手机。我怎么做

4

2 回答 2

3

这是一个可以帮助您的示例

Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_AUTO_CANCEL;

notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notification.ledARGB = 0xff00ff00;
notification.ledOnMS = 300;
notification.ledOffMS = 1000;

您需要在清单文件中添加振动权限。

<uses-permission
        android:name="android.permission.VIBRATE"></uses-permission>
于 2010-07-05T13:23:06.863 回答
0

要播放手机铃声,您可以使用广播接收器中的媒体播放器实例

 mediaPlayer = MediaPlayer.create(context, R.raw./*your ringtone here*/);
     mediaPlayer.start();

在这里你传递上下文但不是“this”

于 2011-04-25T04:39:59.880 回答