android开发:receiver实例

一、BroadcastReceiver概述:

1、广播接收器是一个专注于接收广播通知信息,并做出对应处理的组件。很多广播是源自于系统代码的──比如,通知时区改变、电池电量低、拍摄了一张照片或者用户改变了语言选项。应用程序也可以进行广播──比如说,通知其它应用程序一些数据下载完成并处于可用状态。
2、应用程序可以拥有任意数量的广播接收器以对所有它感兴趣的通知信息予以响应。所有的接收器均继承自BroadcastReceiver基类。
3、广播接收器没有用户界面。然而,它们可以启动一个activity来响应它们收到的信息,或者用NotificationManager来通知用户。通知可以用很多种方式来吸引用户的注意力──闪动背灯、震动、播放声音等等。一般来说是在状态栏上放一个持久的图标,用户可以打开它并获取消息。

错误:can’t instantiate class IntentService no empty constructor

     IntentService 服务的原理,就是启动一个服务,然后开启一个工作线程,当工作线程执行完后,服务就会自动销毁,这种方式可以有效的运行超大时间的工作代码,非常有用,但是在编写的时候出现了一个错误,错误的原因就是没有在super.("这里")指定一个服务名.
public class TestIntentService extends IntentService {
 private static final String TAG = "TestIntentService";
 /**
 * Creates an IntentService. Invoked by your subclass's constructor.
 */
 public TestIntentService() {
 super("TestIntentService");//原来是需要指定一个服务名称
 }

QQ截图20160605142225

Logcat的日志:

06-05 02:21:53.285 21618-21618/com.lanxin.testreceiver I/TestReceiver: before3
06-05 02:21:53.305 21618-21618/com.lanxin.testreceiver I/TestReceiver: after:3
06-05 02:21:53.475 21618-21618/com.lanxin.testreceiver D/TestReceiver1: main:(id)1:(priority)5:(group)main
06-05 02:21:53.475 21618-21618/com.lanxin.testreceiver I/TestReceiver1: 测试一条消息:2
06-05 02:21:53.575 21618-21618/com.lanxin.testreceiver D/TestReceiver1: main:(id)1:(priority)5:(group)main
06-05 02:21:53.595 21618-21618/com.lanxin.testreceiver D/TestReceiver2: main:(id)1:(priority)5:(group)main
06-05 02:21:55.595 21618-21618/com.lanxin.testreceiver I/TestReceiver2: 测试一条消息:2
06-05 02:21:55.595 21618-21618/com.lanxin.testreceiver D/TestReceiver2: main:(id)1:(priority)5:(group)main
06-05 02:21:55.715 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onCreate
06-05 02:21:55.715 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onStartCommand
06-05 02:21:55.745 21618-22366/com.lanxin.testreceiver D/TestIntentService: IntentService[TestIntentService]:(id)109:(priority)5:(group)main
06-05 02:21:55.745 21618-22366/com.lanxin.testreceiver I/TestIntentService: onHandleIntent:0
06-05 02:21:55.755 21618-22366/com.lanxin.testreceiver D/TestIntentService: IntentService[TestIntentService]:(id)109:(priority)5:(group)main
06-05 02:21:55.755 21618-22366/com.lanxin.testreceiver I/TestIntentService: onHandleIntent:1
06-05 02:21:56.015 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onDestroy

 

 
Copyright © 2008-2021 lanxinbase.com Rights Reserved. | 粤ICP备14086738号-3 |