在Android中创建一个可自动启动的广播接收器

时间:2014-10-26 21:57:50

标签: java android android-intent broadcastreceiver android-broadcast

问题:

我愿意创建一个只作为后台进程启动的应用程序,每当有新消息进入设备时,它应该将其记录到文件中或只显示一个toast消息。

我已阅读了很多博客,并尝试按照上述步骤进行操作。但是,我继续在我的设备上发送消息,甚至没有显示在设备日志中。我想在从Froyo到Lollipop的设备上运行它。因此,我不愿意使用支持API 19及更高版本的新Telephony API。

清单文件

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
    <uses-permission android:name="android.permission.RECEIVE_SMS"/>
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >



        <receiver android:name=".SMSHandler">

            <intent-filter>
                <action android:name="android.provider.Telephony.SMS_RECEIVED" />
            </intent-filter>
        </receiver>

    </application>

</manifest>

源文件

package com.abc.test;

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

public class SMSHandler extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // TODO Auto-generated method stub
        Toast toast = Toast.makeText(context, "message initiated",
                Toast.LENGTH_LONG);
        toast.show();

        if (intent.getAction()
                .equals("android.provider.Telephony.SMS_RECEIVED")) {
            toast = Toast.makeText(context, "message received",
                    Toast.LENGTH_LONG);
            toast.show();
        }
    }

}

环境:

IDE:

  • Android Studio

最低版本SDK版本:

  • 8

经过测试:

  • ICS设备(Sony Xperia U)
  • Kit-Kat(MOTO G)

2 个答案:

答案 0 :(得分:1)

在此BroadcastReceiver生效之前,您需要添加一项活动,然后运行该活动。

更准确地说,在您的应用移出停止状态并允许清单注册Intent工作之前,某些内容需要使用明确的BroadcastReceivers。最简单的方法是启动一个启动器活动,然后从启动器运行该活动。

要了解详情,请参阅the Android 3.1 release notes中的“已停止的应用程序启动控件”以及this blog post

答案 1 :(得分:0)

您的代码在清单文件中如下所示

    <receiver android:name=".SMSHandler"
        android:exported="true"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.provider.Telephony.SMS_RECEIVED"/>
        </intent-filter>
    </receiver>

将以下内容添加到清单中的<receiver>

android:enabled="true" android:exported="true">

此外,根据这个帖子,似乎你必须在广播接收器开始工作之前手动启动你的一个活动,即应用程序必须在任何广播接收器工作之前至少启动一次。