欢迎来到天天文库
浏览记录
ID:44811509
大小:49.51 KB
页数:3页
时间:2019-10-29
《android广播事件处理机制学习小结》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Android广播事件处理机制广播事件处理机制是系统级别的,可以通过构建Intent对象然后调用sendBroadcast()方法将广播发出。事件的接受是通过定一个继承BroadcastReceiver的类来实现的,继承该类后覆盖onReceiver()方法,在该方法中响应事件。以下内容包括:自己定义BroadcastReceiver来处理广播事件、系统广播事件的使用、Notification和NotificationManager的使用1.自己定义BroadcastReceiver:a.利用按钮点击发送广播按钮的onClick()
2、中:…..//定义一个Action常量privatestaticfinalStringMY_ACTION="com.hunsion.action.MY_ACTION";//此常量跟中的属性相对应.………publicvoidonClick(Viewv){//实例化Intent对象I
3、ntentintent=newIntent();//设置Intentaction属性intent.setAction(MY_ACTION);//为Intent添加附加信息intent.putExtra("msg","msg");//发出广播sendBroadcast(intent);}b.自定义BroadcastReceiver如下:继承至BroadcastReceiverpublicclassMyReceiverextendsBroadcastReceiver{@Override//覆盖了onReceive方法publicvoid
4、onReceive(Contextcxt,Intentintent){//从Intent中获得信息Stringmsg=intent.getStringExtra("msg");//使用Toast显示Toast.makeText(cxt,msg,Toast.LENGTH_LONG).show();}}C如果要使用系统广播事件则同样要继承BroadcastReceiver并覆盖onReceive()方法,这里不需要自己构建Intent对象只是在配置时使用系统的广播事件,如下:5、er">其中android.intent.action.BOOT_COMPLETED指的是系统启动完成的广播事件常见的标准的广播Action常量:有android.intent.action.BOOT_COMPLETED系统启动完成android.intent.action.ACTIOPN_TIME_CHANGED时间改变andro6、id.intent.action.ACTIOPN_DATE_CHANGED系统日期改变android.intent.action.ACTION_TIMEZONES_CHANGED时区改变android.intent.action.ACTION_BATTERY_LOW电量低android.intent.action.ACTION_MEDIA_EJECT插入或者播拔出外部媒体android.intent.action.ACTION_MEDIA_BUTTON按下媒体按钮android.intent.action.ACTION_PACKAG7、E_ADDED添加包android.intent.action.ACTION_PACKEAGE_REMOVED删除包1.使用Notification和NotificationManger显示广播消息方法比较简单一般先获得NotificationManger,然后实例化Notification设置其属性,通过NotificationManger发送通知。基本步骤为:a.获得NotificationManagerprivateNotificationManagernm=(NotificationManager)getSystemServ8、ice(NOTIFICATION_SERVICE);b.实例化Notification对象Notificationn=newNotification();//设置显示图标,该图标会在状态栏显示/*也可以通过这个构造方法来设置Notif
5、er">其中android.intent.action.BOOT_COMPLETED指的是系统启动完成的广播事件常见的标准的广播Action常量:有android.intent.action.BOOT_COMPLETED系统启动完成android.intent.action.ACTIOPN_TIME_CHANGED时间改变andro
6、id.intent.action.ACTIOPN_DATE_CHANGED系统日期改变android.intent.action.ACTION_TIMEZONES_CHANGED时区改变android.intent.action.ACTION_BATTERY_LOW电量低android.intent.action.ACTION_MEDIA_EJECT插入或者播拔出外部媒体android.intent.action.ACTION_MEDIA_BUTTON按下媒体按钮android.intent.action.ACTION_PACKAG
7、E_ADDED添加包android.intent.action.ACTION_PACKEAGE_REMOVED删除包1.使用Notification和NotificationManger显示广播消息方法比较简单一般先获得NotificationManger,然后实例化Notification设置其属性,通过NotificationManger发送通知。基本步骤为:a.获得NotificationManagerprivateNotificationManagernm=(NotificationManager)getSystemServ
8、ice(NOTIFICATION_SERVICE);b.实例化Notification对象Notificationn=newNotification();//设置显示图标,该图标会在状态栏显示/*也可以通过这个构造方法来设置Notif
此文档下载收益归作者所有