欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android基于广播事件机制实现简单定时提醒功能代码

程序员文章站 2023-11-16 17:02:52
本文实例讲述了android基于广播事件机制实现简单定时提醒功能代码。分享给大家供大家参考,具体如下: 1.android广播事件机制 android的广播事件处理类似...

本文实例讲述了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.getsystemservice(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) getsystemservice(alarm_service);
    // create a pendingintent that will perform a broadcast
    pendingintent pi= pendingintent.getbroadcast(remindersetting.this, 0, 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.getsystemservice(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) getsystemservice(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程序设计有所帮助。