热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

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

这篇文章主要介绍了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中注册:

  
     
     
   


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程序设计有所帮助。


推荐阅读
  • Android 九宫格布局详解及实现:人人网应用示例
    本文深入探讨了人人网Android应用中独特的九宫格布局设计,解析其背后的GridView实现原理,并提供详细的代码示例。这种布局方式不仅美观大方,而且在现代Android应用中较为少见,值得开发者借鉴。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • Android LED 数字字体的应用与实现
    本文介绍了一种适用于 Android 应用的 LED 数字字体(digital font),并详细描述了其在 UI 设计中的应用场景及其实现方法。这种字体常用于视频、广告倒计时等场景,能够增强视觉效果。 ... [详细]
  • RecyclerView初步学习(一)
    RecyclerView初步学习(一)ReCyclerView提供了一种插件式的编程模式,除了提供ViewHolder缓存模式,还可以自定义动画,分割符,布局样式,相比于传统的ListVi ... [详细]
  • Vue 2 中解决页面刷新和按钮跳转导致导航栏样式失效的问题
    本文介绍了如何通过配置路由的 meta 字段,确保 Vue 2 项目中的导航栏在页面刷新或内部按钮跳转时,始终保持正确的 active 样式。具体实现方法包括设置路由的 meta 属性,并在 HTML 模板中动态绑定类名。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 本文详细介绍了如何使用Spring Boot进行高效开发,涵盖了配置、实例化容器以及核心注解的使用方法。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • Python自动化处理:从Word文档提取内容并生成带水印的PDF
    本文介绍如何利用Python实现从特定网站下载Word文档,去除水印并添加自定义水印,最终将文档转换为PDF格式。该方法适用于批量处理和自动化需求。 ... [详细]
  • 在当前众多持久层框架中,MyBatis(前身为iBatis)凭借其轻量级、易用性和对SQL的直接支持,成为许多开发者的首选。本文将详细探讨MyBatis的核心概念、设计理念及其优势。 ... [详细]
  • 将Web服务部署到Tomcat
    本文介绍了如何在JDeveloper 12c中创建一个Java项目,并将其打包为Web服务,然后部署到Tomcat服务器。内容涵盖从项目创建、编写Web服务代码、配置相关XML文件到最终的本地部署和验证。 ... [详细]
  • XNA 3.0 游戏编程:从 XML 文件加载数据
    本文介绍如何在 XNA 3.0 游戏项目中从 XML 文件加载数据。我们将探讨如何将 XML 数据序列化为二进制文件,并通过内容管道加载到游戏中。此外,还会涉及自定义类型读取器和写入器的实现。 ... [详细]
  • 本文介绍如何在 Unity 的 XML 配置文件中,将参数传递给自定义生命周期管理器的构造函数。我们将详细探讨 CustomLifetimeManager 类的实现及其配置方法。 ... [详细]
  • 本文详细介绍了 Java 中 org.apache.xmlbeans.SchemaType 类的 getBaseEnumType() 方法,提供了多个代码示例,并解释了其在不同场景下的使用方法。 ... [详细]
  • 本文详细介绍了如何解决MyBatis中常见的BindingException错误,提供了多种排查和修复方法,确保Mapper接口与XML文件的正确配置。 ... [详细]
author-avatar
粉红涩色
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有