工作原理是通过封装一个service启动的一个线程产生的随机数封装到intent对象传递给Activity,Activity接受到后讲结果输出到屏幕。

java的代码:

package jm.out;
import android.app.Activity;//引入相关包
import android.content.BroadcastReceiver;//引入相关包
import android.content.Context;//引入相关包
import android.content.Intent;//引入相关包
import android.content.IntentFilter;//引入相关包
import android.os.Bundle;//引入相关包
import android.view.View;//引入相关包
import android.view.View.OnClickListener;//引入相关包
import android.widget.Button;//引入相关包
import android.widget.TextView;//引入相关包
//继承自Activity的子类
public class IntentBroadcastActivity extends Activity {
 public static final int CMD_STOP_SERVICE = 0;
 Button btnStart;//开始服务Button对象应用
 Button btnStop;//停止服务Button对象应用
 TextView tv;//TextView对象应用
 DataReceiver dataReceiver;//BroadcastReceiver对象
 @Override
    public void onCreate(Bundle savedInstanceState) {//重写onCreate方法
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);//设置显示的屏幕
        btnStart = (Button)findViewById(R.id.btnStart);
        btnStop = (Button)findViewById(R.id.btnStop);
        tv = (TextView)findViewById(R.id.tv);
        btnStart.setOnClickListener(new OnClickListener() {//为按钮添加点击事件监听  
   @Override
   public void onClick(View v) {//重写onClick方法
    Intent myIntent = new Intent(IntentBroadcastActivity.this, jm.out.MyService.class);
    IntentBroadcastActivity.this.startService(myIntent);//发送Intent启动Service
   }
  });
        btnStop.setOnClickListener(new OnClickListener() {//为按钮添加点击事件监听 
   @Override
   public void onClick(View v) {//重写onClick方法
    Intent myIntent = new Intent();//创建Intent对象
    myIntent.setAction("wyf.wpf.MyService");
    myIntent.putExtra("cmd", CMD_STOP_SERVICE);
    sendBroadcast(myIntent);//发送广播
   }
  });
    } 
 private class DataReceiver extends BroadcastReceiver{//继承自BroadcastReceiver的子类
  @Override
  public void onReceive(Context context, Intent intent) {//重写onReceive方法
   double data = intent.getDoubleExtra("data", 0);
   tv.setText("Service的数据为:"+data);   
  }  
 }
 @Override
 protected void onStart() {//重写onStart方法
  dataReceiver = new DataReceiver();
  IntentFilter filter = new IntentFilter();//创建IntentFilter对象
  filter.addAction("wyf.wpf.Sample_3_6");
  registerReceiver(dataReceiver, filter);//注册Broadcast Receiver
  super.onStart();
 }
 @Override
 protected void onStop() {//重写onStop方法
  unregisterReceiver(dataReceiver);//取消注册Broadcast Receiver
  super.onStop();
 }
} service类: package jm.out; import android.app.Service;//引入相关包
import android.content.BroadcastReceiver;//引入相关包
import android.content.Context;//引入相关包
import android.content.Intent;//引入相关包
import android.content.IntentFilter;//引入相关包
import android.os.IBinder;//引入相关包
//继承自Service的子类
public class MyService extends Service{
 CommandReceiver cmdReceiver;
 boolean flag;
 @Override
 public void onCreate() {//重写onCreate方法
  flag = true;
  cmdReceiver = new CommandReceiver();
  super.onCreate();
 }
 @Override
 public IBinder onBind(Intent intent) {//重写onBind方法
  // TODO Auto-generated method stub
  return null;
 }
 @Override
 public int onStartCommand(Intent intent, int flags, int startId) {//重写onStartCommand方法
  IntentFilter filter = new IntentFilter();//创建IntentFilter对象
  filter.addAction("jm.out.MyService");
  registerReceiver(cmdReceiver, filter);//注册Broadcast Receiver
  doJob();//调用方法启动线程
  return super.onStartCommand(intent, flags, startId);
 }
 //方法:
 public void doJob(){
  new Thread(){
   public void run(){
    while(flag){
     try{//睡眠一段时间
      Thread.sleep(1000);
     }
     catch(Exception e){
      e.printStackTrace();
     }
     Intent intent = new Intent();//创建Intent对象
     intent.setAction("jm.out.IntentBroadcastActivity");
     intent.putExtra("data", Math.random());
     sendBroadcast(intent);//发送广播
    }    
   }
   
  }.start();
 } 
 private class CommandReceiver extends BroadcastReceiver{//继承自BroadcastReceiver的子类
  @Override
  public void onReceive(Context context, Intent intent) {//重写onReceive方法
   int cmd = intent.getIntExtra("cmd", -1);//获取Extra信息
   if(cmd == IntentBroadcastActivity.CMD_STOP_SERVICE){//如果发来的消息是停止服务    
    flag = false;//停止线程
    stopSelf();//停止服务
   }
  }  
 }
 @Override
 public void onDestroy() {//重写onDestroy方法
  this.unregisterReceiver(cmdReceiver);//取消注册的CommandReceiver
  super.onDestroy();
 } 
} xml配置: <?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
  <Button android:id="@+id/btnStart"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="启动服务" />
  <Button android:id="@+id/btnStop"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="停止服务" />
  <TextView android:id="@+id/tv"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="等待来自Service的数据" />
  </LinearLayout> androidmanifest.xml的配置:   <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="wyf.wpf" android:versionCode="1" android:versionName="1.0">
-<application android:icon="@drawable/icon" android:label="@string/app_name">
-<activity android:name=".Sample_3_6" android:label="@string/app_name">
-<intent-filter>
  <action android:name="android.intent.action.MAIN" />
  <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
  </activity>
-<service android:name=".MyService" android:process=":remote">
-<intent-filter>
 <actionandroid:name="wyf.wpf.MyService" />
  </intent-filter>
  </service>
  </application>
  <uses-sdk android:minSdkVersion="7" />
  </manifest>
要注意的是红色代码,只有这样才可以让service在activity退出后还能运行,保证了主线程停止,service还能在后台运行。

intent 和 Broadcast Receiver之间的通信的更多相关文章

  1. Intent实现Activity组件之间的通信

    今天讲解的是使用Intent实现Activity组件之间的通信. 一.         使用Intent显式启动Activity,Activity1àActivity2 1.             ...

  2. Android应用程序组件之间的通信Intent和IntentFilter

    Android应用程序的基本组件,这些基本组建除了Content Provider之外,几乎全部都是依靠Intent对象来激活和通信的. 下面介绍Intent类,并通过例子来说明Intent一般用法 ...

  3. Android中Intent具体解释(二)之使用Intent广播事件及Broadcast Receiver简单介绍

    通过第一篇的解说,我们已经看到了怎样使用Intent来启动新的应用程序组件,可是实际上他们也能够使用sendBroadcast方法来在组件间匿名的广播消息. 作为一个系统级别的消息传递机制,Inten ...

  4. Android中BroadCast与Activity之间的通信

    在看本文之前,假设你对于Android的广播机制不是非常了解.建议先行阅读我转载的一篇博文:图解 Android 广播机制. 因为本案例比較简单,故直接在此贴出代码,不做过多的阐述. 先上效果截图: ...

  5. 使用Broadcast实现android组件之间的通信 分类: android 学习笔记 2015-07-09 14:16 110人阅读 评论(0) 收藏

    android组件之间的通信有多种实现方式,Broadcast就是其中一种.在activity和fragment之间的通信,broadcast用的更多本文以一个activity为例. 效果如图: 布局 ...

  6. 使用Broadcast实现android组件之间的通信

    android组件之间的通信有多种实现方式,Broadcast就是其中一种.在activity和fragment之间的通信,broadcast用的更多本文以一个activity为例. 效果如图: 布局 ...

  7. Android学习笔记八:用Broadcast Receiver跨进程(跨app)通信

    转载请注明原文地址:http://www.cnblogs.com/ygj0930/p/7515194.html 在前面介绍四大组件的时候提到了可以对外部事件进行过滤的Broadcast Receive ...

  8. Broadcast Intent & Broadcast Receiver

    当Android系统发生某种状况,必须通知所有程序进行处理时,例如电量不足等,可利用Broadcast Intent对象的功能来进行信息广播. 运行机制包括两部:送出Intent对象的程序:监听广播信 ...

  9. 我的Android 4 学习系列之Intent 和 Broadcast Reciever

    目录 Intent 简介 使用隐式和显式Intent启动Activity.子Acitivity和Service 使用Linkify 使用Broadcast Intent 广播事件 使用 Pending ...

随机推荐

  1. Chrome调试 ---- 控制台获取元素上绑定的事件信息以及监控事件

    需求场景 在前端开发中,偶尔需要验证下某个元素上到底绑定了哪些事件,以及监控某个元素上的事件触发情况. 解决方案 普通操作 之前面对这种情况,一般采取的措施就是在各个事件里写console.info, ...

  2. No converter found capable of converting from type [java.lang.String] to type [java.util.Map<java.lang.String, org.springframework.boot.logging.LogLevel>]

    java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.conte ...

  3. AtCoder Grand Contest 033 题解

    传送门 我比赛的时候怕不是在睡觉啊-- \(A\ Darker\ and\ Darker\) 我是不是想得太复杂了--根本没必要像我这样做吧-- 首先问题可以转化成令\(p_{i,j}\)表示到\(( ...

  4. Cantor表-(模拟)

    链接:https://ac.nowcoder.com/acm/contest/1069/I来源:牛客网 题目描述 现代数学的著名证明之一是Georg Cantor证明了有理数是可枚举的.他是用下面这一 ...

  5. Android 开发基础入门篇: 生成带有签名的apk安装包

    说明: 软件默认生成的安装包没有签名,现在手机安装APP的时候要求,安装包必须有签名才可以 默认生成的APK位置 现在生成带有签名的APK 我一般放到当前工程根目录,然后文件名字 key 有些时候需要 ...

  6. [RN] React Native 使用 阿里 ant-design

    React Native 使用 阿里 ant-design 实例效果如图: 一.安装 npm install antd-mobile-rn --save npm install babel-plugi ...

  7. 计算GPS点之间的距离

    latitude纬度 longtitude经度 // 求弧度 double getRadian(double d) { return d * PI / 180.0; //角度1? = π / 180 ...

  8. 推荐IOS Moneky测试工具Fast Monkey

    推荐IOS Moneky测试工具Fast Monkey 1 介绍 非插桩 iOS Monkey, 支持控件,每秒4-5 action事件 2 下载 https://github.com/zhangzh ...

  9. concurrent(六)同步辅助器CyclicBarrier & 源码分析

    参考文档:Java多线程系列--“JUC锁”10之 CyclicBarrier原理和示例:https://www.cnblogs.com/skywang12345/p/3533995.html简介Cy ...

  10. mysql(六)数据库连接池

    什么是数据库连接池 数据库连接池(Connection pooling)是程序启动时建立足够的数据库连接,并将这些连接组成一个连接池,由程序动态地对池中的连接进行申请,使用,释放 数据库连接池的运行机 ...