返回顶部
首页 > 资讯 > 移动开发 >Android开发之BroadcastReceiver用法实例分析
  • 272
分享到

Android开发之BroadcastReceiver用法实例分析

android开发Android 2022-06-06 10:06:34 272人浏览 独家记忆
摘要

本文实例讲述了Android开发中BroadcastReceiver用法。分享给大家供大家参考。具体分析如下: 在Android系统中,广播(Broadcast)是在组件之间传

本文实例讲述了Android开发中BroadcastReceiver用法。分享给大家供大家参考。具体分析如下:

在Android系统中,广播(Broadcast)是在组件之间传播数据(Intent)的一种机制。

Braodcast Receiver顾名思义就是广播接收器,它和事件处理机制类似,但是事件处理机制是程序组件级别的(比如:按钮的单击事件),而广播事件处理机制是系统级别的。我们可以用Intent来启动一个组件,也可以用sendBroadcast()方法发起一个系统级别的事件广播来传递消息。我们同样可以在自己的应用程序中实现Broadcast Receiver来监听和响应广播的Intent。

事件的广播通过创建Intent对象并调用sendBroadcast()方法将广播发出。事件的接受是通过定义一个继承BroadcastReceiver的类来实现的,继承该类后覆盖其onReceive()方法,在该方法中响应事件。

下面是android系统中定义了很多标准的Broadcast Action来响应系统的广播事件。

①ACTION_TIME_CHANGED(时间改变时触发)
②ACTION_BOOT_COMPLETED(系统启动完成后触发)--比如有些程序开机后启动就是用这种方式来实现的
③ACTION_PACKAGE_ADDED(添加包时触发)
④ACTION_BATTERY_CHANGED(电量低时触发)

下面看一个例子:

我们在一个按钮上绑定一个事件,事件通过发送一个广播来触发loGCat打出一个log。

先看manifest文件。


<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="Http://schemas.android.com/apk/res/android" 
  package="com.example.test" 
  android:versionCode="1" 
  android:versionName="1.0" > 
  <uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="16" />
  <application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" >
    <activity 
      android:name="com.example.broadcast.BroadcastReceiverActivity" 
      android:label="@string/app_name_bc" >
      <intent-filter>
        <action android:name="android.intent.action.MaiN" >
        </action>
        <cateGory android:name="android.intent.category.LAUNCHER" >
        </category>
      </intent-filter>
    </activity>
    <receiver android:name="com.example.broadcast.HelloBroadReciever" >
      <intent-filter>
        <action android:name="comz.test.printlog" >
        </action>
      </intent-filter>
    </receiver>
  </application>
</manifest>

上面声明了一个receiver。接收名字是comz.test.printlog的消息。

看activity:


package com.example.broadcast;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.example.test.R;
public class BroadcastReceiverActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button b1 = (Button) findViewById(R.id.broadcastBtn);
    b1.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        Log.e("mason", "here");
        // 定义一个intent
        Intent intent = new Intent().setAction("comz.test.printlog")
            .putExtra("info", "here is your info.");
        // 广播出去
        sendBroadcast(intent);
      }
    });
  }
}

在这段代码中,定义一个intent并发送广播出去。

看BroadReceiver的代码:


package com.example.broadcast;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class HelloBroadReciever extends BroadcastReceiver {
  // 如果接收的事件发生
  @Override
  public void onReceive(Context context, Intent intent) {
    Log.e("mason", "on receive");
    if (intent.getAction().equals("comz.test.printlog")) {
      Log.e("mason", intent.getStringExtra("info"));
    }
  }
}

这是BroadcastReceiver的代码。

在接收到消息之后,如果消息是comz.test.printlog,则打印消息。

希望本文所述对大家的Android程序设计有所帮助。

您可能感兴趣的文章:深入Android中BroadcastReceiver的两种注册方式(静态和动态)详解Android中BroadcastReceiver(异步接收广播Intent)的使用Android提高之BroadcastReceiver实例详解Android编程四大组件之BroadcastReceiver(广播接收者)用法实例Android查看电池电量的方法(基于BroadcastReceiver)Android BroadcastReceiver广播注册方式总结详解Android中BroadCastReceiver组件Android采取BroadcastReceiver方式自动获取验证码Android BroadcastReceiver常见监听整理Android BroadcastReceiver实现网络状态实时监听


--结束END--

本文标题: Android开发之BroadcastReceiver用法实例分析

本文链接: https://lsjlt.com/news/26724.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作