本文主要是介绍Broadcast入门1,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
示例:监听电量变化(动态注册)
private BatteryLevelReceiver batteryLevelReceiver;@Overrideprotected void onCreate(Bundle bundle) {super.onCreate(bundle);setContentView(R.layout.activity_main);Log.d(TAG, "onCreate: !");initView();initBroadcast();}private void initBroadcast() {IntentFilter intentFilter = new IntentFilter();// 设定监听的广播类型intentFilter.addAction(Intent.ACTION_BATTERY_CHANGED);intentFilter.addAction(Intent.ACTION_BATTERY_LOW);intentFilter.addAction(Intent.ACTION_BATTERY_OKAY);// 实例化一个广播接收器batteryLevelReceiver = new BatteryLevelReceiver();// 注册广播接收器this.registerReceiver(batteryLevelReceiver, intentFilter);}private class BatteryLevelReceiver extends BroadcastReceiver{@Overridepublic void onReceive(Context context, Intent intent) {// 获取监听广播的类型String action = intent.getAction();switch (action) {case Intent.ACTION_BATTERY_CHANGED:Log.d(TAG, "onReceive: 电量变化" + intent.getIntExtra(BatteryManager.EXTRA_LEVEL, 0));break;case Intent.ACTION_BATTERY_LOW:Log.d(TAG, "onReceive: 低电量");break;case Intent.ACTION_BATTERY_OKAY:Log.d(TAG, "onReceive: 电量ok");break;default:break;}}}@Overrideprotected void onDestroy() {super.onDestroy();unregisterReceiver(batteryLevelReceiver);}
从示例中可以看出,如果仅实现动态注册——监听广播,需要实现的部分如下:
1.实现一个receiver,继承自BroadcastReceiver。重写onReceive方法,在里面实现监听到具体广播后的逻辑。
2.实例化并注册该receiver,在注册时通过在intentFilter里设置action来指定监听的广播类型。
3.在销毁活动时取消注册。否则会导致内存泄漏。
该示例展示的是动态注册方法。安卓系统的一些系统级别的广播是要求动态注册的。但是也可以发现动态注册存在的一个问题,就是在程序启动之后才会生效。
示例:监听开机完成(静态注册)
public class BootCompleteReceiver extends BroadcastReceiver {private static final String TAG = BootCompleteReceiver.class.getSimpleName();@Overridepublic void onReceive(Context context, Intent intent) {Log.d(TAG, "onReceive: " + intent.getAction());Toast.makeText(context, "boot complete", Toast.LENGTH_SHORT).show();}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.example.activitydemo"><uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/><applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/Theme.MyApplication"><activity android:name="com.example.activitydemo.MainActivity"android:configChanges="keyboardHidden|screenSize|orientation"android:label="@string/app_name"><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity><receiver android:name=".broadcast.BootCompleteReceiver"android:enabled="true"android:exported="true"><!-- 设置监听action --><intent-filter><action android:name="android.intent.action.BOOT_COMPLETED"/></intent-filter></receiver></application></manifest>
从示例中可以看出,静态注册—监听广播需要实现的内容为:
1.自定义receiver类,这一项与动态注册相同。
2.在manifest里注册该revicever,指定监听的事件类型。
可以看到静态注册方法可以在程序不启动的情况下监听事件。同时,该监听行为是一直持续的,因此比较消耗资源。
此外,在广播接收器中不允许开启线程,当onReceive运行了比较长的时间而没有返回的时候,程序会报错。
这篇关于Broadcast入门1的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!