如何在不停止的情况下运行广播接收器?

时间:2013-07-28 17:16:59

标签: android broadcastreceiver

我想不停地播放广播接收器,我不知道如何。

我不知道是否一直有服务运行...

谢谢!

1 个答案:

答案 0 :(得分:1)

您不需要启动/停止BroadcastReceiver。它不是你的后台运行服务。您只需为您的应用注册或取消注册即可。一旦注册,它总是开启。

当某些特定事件发生时,系统会通知(广播)所有已注册的应用程序有关该事件的信息。所有已注册的应用都会以Intent的身份收到此消息。此外,您可以发送自己的广播。

了解更多信息,see this

简单示例:

在我的清单中,我包括许可和接收者

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.receivercall"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <receiver android:name=".Main">
        <intent-filter >
            <action android:name="android.intent.action.PHONE_STATE"/>
        </intent-filter>
    </receiver>
    <activity android:name=".TelServices">
        <intent-filter >
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>

        </intent-filter>
    </activity>
</application>

现在,我的接收器 Main.java

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.TelephonyManager;
import android.widget.Toast;



   public class Main extends BroadcastReceiver {
    String number,state;   
    @Override
    public void onReceive(Context context, Intent intent) {

         state=intent.getStringExtra(TelephonyManager.EXTRA_STATE);

        if(state.equals(TelephonyManager.EXTRA_STATE_RINGING)){
            number=intent.getStringExtra(TelephonyManager.EXTRA_INCOMING_NUMBER);

            Toast.makeText(context, "Call from : "+number, Toast.LENGTH_LONG).show();
        }
        else if(state.equals(TelephonyManager.EXTRA_STATE_IDLE))
            Toast.makeText(context, "Call ended", Toast.LENGTH_LONG).show();
        else
            Toast.makeText(context, intent.getAction(), Toast.LENGTH_LONG).show();

    }

}

在这里,当我安装此应用程序时,我通过清单注册Broadcastreceiver。每次来电/结束时,Toast都会出现。