我已经编写了设置警报的代码。时间一到,我就能成功地从我的警报接收器班上举杯敬酒。
现在我想播放默认的手机铃声以及振动你的手机。我怎么做
这是一个可以帮助您的示例
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>
要播放手机铃声,您可以使用广播接收器中的媒体播放器实例
mediaPlayer = MediaPlayer.create(context, R.raw./*your ringtone here*/);
mediaPlayer.start();
在这里你传递上下文但不是“this”