2013-03-26 223 views
-4

如何在Android中播放特定时间段的闹钟通知(例如连续播放10分钟)?如何播放10分钟的闹钟通知

public class AlarmReciver extends BroadcastReceiver{ 

private static int NOTIFICATION_ID = 1; 
Bundle bundle; 
int notificationId = 0; 
AudioManager audioManager; 
@Override 
public void onReceive(Context context, Intent intent) { 
// TODO Auto-generated method stub 
    try{ 
    audioManager = (AudioManager) context.getSystemService (Context.AUDIO_SERVICE); 
    audioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL); 
    int maxVolume = audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC); 
    audioManager.setStreamVolume(AudioManager.STREAM_MUSIC, maxVolume, 0); 
     //audioManager.setStreamVolume(AudioManager.STREAM_MUSIC,audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC), 0); 
    notificationId = intent.getExtras().getInt("notificationId"); 
    NotificationManager manger = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); 
Notification notification = new Notification(R.drawable.ic_launcher, "YourBestSelfApp", System.currentTimeMillis()); 
notification.flags |= Notification.FLAG_AUTO_CANCEL; 
notification.defaults = Notification.DEFAULT_VIBRATE|Notification.DEFAULT_LIGHTS; 
notification.sound = Uri.parse("android.resource://"+context.getPackageName()+"/"+R.raw.iphone_5_original); 
Intent intent1 = new Intent(context,WelcomeActivity.class); 
intent1.putExtra("activityFrom", "notificationAlarm"); 
PendingIntent activity = PendingIntent.getActivity(context,NOTIFICATION_ID + 1, intent1, PendingIntent.FLAG_UPDATE_CURRENT); 
notification.setLatestEventInfo(context, "hello","", activity); 
notification.number = 1; 
manger.notify(notificationId, notification); 
    }catch (Exception e) { 
    // TODO: handle exception 
    e.printStackTrace(); 
      } 
     } 
+1

[欢迎来到Stackoverflow](http://stackoverflow.com/faq#dontask) – RobinHood 2013-03-26 10:38:07

+0

实际上是什么问题? – Gunaseelan 2013-03-26 10:43:29

回答

0

//联系SyncBroadcast.class,它可能是一个活动或撒施接收器或服务

Intent intent = new Intent(this,ContactsSyncBroadcast.class); 
PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 
       0, intent, PendingIntent.FLAG_UPDATE_CURRENT); 
AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE); 
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,10*60*1000,10*60*1000, pendingIntent); 

报警将触发每10分钟。

+0

我想设置闹铃响铃持续时间不会每10分钟连续重复一次闹铃我清楚吗? – user2099162 2013-03-26 12:54:46