本文实例讲述了AndroID基于广播事件机制实现简单定时提醒功能代码。分享给大家供大家参考,具体如下:
1.AndroID广播事件机制
AndroID的广播事件处理类似于普通的事件处理。不同之处在于,后者是靠点击按钮这样的组件行为来触发,而前者是通过构建Intent对象,使用sentbroadcast()方法来发起一个系统级别的事件广播来传递信息。广播事件的接收是通过定义一个继承broadcast Receiver的类实现的,继承该类后覆盖其onReceive()方法,在该方法中响应事件。AndroID系统中定义了很多标准的broadcast Action来响应系统广播事件。例如:ACTION_TIME_CHANGED(时间改变时触发)。但是,我们也可以自己定义broadcast Receiver接收广播事件。
2.实现简单的定时提醒功能
主要包括三部分部分:
1) 定时 - 通过定义Activity发出广播
2) 接收广播 - 通过实现broadcastReceiver接收广播
3) 提醒 - 并通过Notification提醒用户
现在我们来具体实现这三部分:
2.1 如何定时,从而发出广播呢?
现在的手机都有闹钟的功能,我们可以利用系统提供的闹钟功能,来定时,即发出广播。具体地,在AndroID开发中可以用AlarmManager来实现。
AlarmManager 提供了一种系统级的提示服务,允许你安排在某个时间执行某一个服务。
AlarmManager的使用步骤说明如下:
1)获得AlarmManager实例: AlarmManager对象一般不直接实例化,而是通过Context.getSy@R_502_6563@Service(Context.ALARM_SERVIECE) 方法获得
2)定义一个PendingIntent来发出广播。
3)调用AlarmManager的相关方法,设置定时、重复提醒等功能。
详细代码如下(ReminderSetting.java):
package com.Reminder;import java.util.Calendar;import androID.app.Activity;import androID.app.AlarmManager;import androID.app.PendingIntent;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.Widget.button;/*** trigger the broadcast event and set the alarm*/public class ReminderSetting extends Activity { button btnEnable; /** Called when the activity is first created. */ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); /* create a button. When you click the button,the alarm clock is enabled */ btnEnable=(button)findVIEwByID(R.ID.btnEnable); btnEnable.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw v) { setReminder(true); } }); } /** * Set the alarm * * @param b whether enable the Alarm clock or not */ private voID setReminder(boolean b) { // get the AlarmManager instance AlarmManager am= (AlarmManager) getSy@R_502_6563@Service(ALARM_SERVICE); // create a PendingIntent that will perform a broadcast PendingIntent pi= PendingIntent.getbroadcast(ReminderSetting.this,new Intent(this,MyReceiver.class),0); if(b){ // just use current time as the Alarm time. Calendar c=Calendar.getInstance(); // schedule an alarm am.set(AlarmManager.RTC_WAKEUP,c.getTimeInMillis(),pi); } else{ // cancel current alarm am.cancel(pi); } }}
2.2 接收广播
新建一个class 继承broadcastReceiver,并实现onReceive()方法。当broadcastReceiver接收到广播后,就会去执行OnReceive()方法。所以,我们在OnReceive()方法中加上代码,当接收到广播后就跳到显示提醒信息的Activity。具体代码如下( MyReceiver.java):
package com.Reminder;import androID.content.broadcastReceiver;import androID.content.Context;import androID.content.Intent;/*** Receive the broadcast and start the activity that will show the alarm*/public class MyReceiver extends broadcastReceiver { /** * called when the broadcastReceiver is receiving an Intent broadcast. */ @OverrIDe public voID onReceive(Context context,Intent intent) { /* start another activity - MyAlarm to display the alarm */ intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setClass(context,MyAlarm.class); context.startActivity(intent); }}
注意:创建完broadcastReceiver后,需要在AndroIDManifest.xml中注册:
<receiver androID:name=".MyReceiver"> <intent-filter> <action androID:name= "com.Reminder.MyReceiver" /> </intent-filter> </receiver>
2.3 提醒功能
新建一个Activity,我们在这个Activity中通过AndroID的Notification对象来提醒用户。我们将添加提示音,一个TextVIEw来显示提示内容和并一个button来取消提醒。
其中,创建Notification主要包括:
1)获得系统级得服务notificationmanager,通过 Context.getSy@R_502_6563@Service(NOTIFICATION_SERVICE)获得。
2)实例化Notification对象,并设置各种我们需要的属性,比如:设置声音。
3)调用notificationmanager的notify()方法显示Notification
详细代码如下:MyAlarm.java
package com.Reminder;import androID.app.Activity;import androID.app.Notification;import androID.app.notificationmanager;import androID.net.Uri;import androID.os.Bundle;import androID.provIDer.MediaStore.Audio;import androID.vIEw.VIEw;import androID.Widget.button;import androID.Widget.TextVIEw;/*** display the alarm information */public class MyAlarm extends Activity { /** * An IDentifIEr for this notification unique within your application */ public static final int NOTIFICATION_ID=1; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.my_alarm); // create the instance of notificationmanager final notificationmanager nm=(notificationmanager) getSy@R_502_6563@Service(NOTIFICATION_SERVICE); // create the instance of Notification Notification n=new Notification(); /* set the sound of the alarm. There are two way of setting the sound */ // n.sound=Uri.parse("file:///sdcard/alarm.mp3"); n.sound=Uri.withAppendedpath(Audio.Media.INTERNAL_CONTENT_URI,"20"); // Post a notification to be shown in the status bar nm.notify(NOTIFICATION_ID,n); /* display some information */ TextVIEw tv=(TextVIEw)findVIEwByID(R.ID.tvNotification); tv.setText("Hello,it's time to bla bla..."); /* the button by which you can cancel the alarm */ button btnCancel=(button)findVIEwByID(R.ID.btnCancel); btnCancel.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw arg0) { nm.cancel(NOTIFICATION_ID); finish(); } }); }}
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android基于广播事件机制实现简单定时提醒功能代码全部内容,希望文章能够帮你解决Android基于广播事件机制实现简单定时提醒功能代码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)