zoukankan      html  css  js  c++  java
  • android中broadcastreceiver的用法-manifest中注册。

    package com.jinhoward.broadcast.activity;
    
    import com.jinhoward.broadcast.activity.R;
    
    import android.app.Activity;
    import android.content.Intent;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;
    
    public class MainActivity extends Activity
    {
    	protected static final String MYACTION = "com.jinhoward.broadcast.ACTION";
    	private Button btnBroadcast;
    	@Override
    	public void onCreate(Bundle savedInstanceState)
    	{
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.main);
    		btnBroadcast=(Button)findViewById(R.id.btnBroadcast);
    		
    		btnBroadcast.setOnClickListener(new OnClickListener()
    		{
    			@Override
    			public void onClick(View v)
    			{
    				Intent intent=new Intent().setAction(MYACTION);
    				Log.i("MyReceiver", "按钮被点击");
    				sendBroadcast(intent);
    			}
    		});
    	}
    }


    receiver类:

    package com.jinhoward.broadcast.receiver;
    
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.util.Log;
    
    /**
     * @author  jinhoward
     * @blog    http://blog.csdn.net/jinhwoard
     */
    public class MyReceiver extends BroadcastReceiver
    {
    
    	private static final String TAG = "MyReceiver";
    
    	
    	public MyReceiver()
    	{
    		Log.i(TAG, "MyReceiver的构造函数执行");
    	}
    
    
    	@Override
    	public void onReceive(Context context, Intent intent)
    	{
    		Log.i(TAG, "接受到广播:"+intent.getAction());
    	}
    
    }
    


    manifest文件:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.jinhoward.broadcast.activity"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk android:minSdkVersion="8" />
    
        <application
            android:icon="@drawable/icon"
            android:label="@string/app_name" >
            <activity
                android:name="com.jinhoward.broadcast.activity.MainActivity"
                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="com.jinhoward.broadcast.receiver.MyReceiver" >
                <intent-filter>
                    <action android:name="android.provider.Telephony.SMS_RECEIVED" />
                </intent-filter>
                <intent-filter>
                    <action android:name="com.jinhoward.broadcast.ACTION" />
                </intent-filter>
            </receiver>
        </application>
    
        <uses-permission android:name="android.permission.RECEIVE_SMS" />
    
    </manifest>


    学习到知识:

    1、非系统类的广播需要自己定义action并且自己发送广播。

    2、系统自带的广播不需要定义action,也不需要发送广播,只需要注册相应的系统广播事件,进行处理即可。

    3、broadcastreceiver的生命周期

    A BroadcastReceiver object is only valid for the duration of the call to onReceive(Context, Intent). Once your code returns from this function, the system considers the object to be finished and no longer active.

    This has important repercussions to what you can do in an onReceive(Context, Intent) implementation: anything that requires asynchronous operation is not available, because you will need to return from the function to handle the asynchronous operation, but at that point the BroadcastReceiver is no longer active and thus the system is free to kill its process before the asynchronous operation completes.





  • 相关阅读:
    C#接口入门学习
    消息队列接收时报错:对消息队列系统的访问被拒绝
    给某做测试的好友的建议
    在不同的Sql Server 数据库服务器(不同机器)导数据。
    如何让开发人员更好测试?
    存储过程初探
    语音报警.NET开发初探
    vs2010下Siverlight开发环境安装
    C# HttpWebRequest 从google服务器获取google的PageRank PR值
    创建进程API CreateProcess Demo
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3236863.html
Copyright © 2011-2022 走看看