Android应用程序没有响应SMS接收器

时间:2012-01-24 16:46:10

标签: android sms broadcastreceiver

我一直在开发一个应用程序来回复收到的短信(在你抱怨之前,我知道这已被问了很多,但是相信我,我根本无法让它工作,我试过了寻找几个小时)。我的清单设置如下:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.csbctech.notiscreen"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.RECEIVE_SMS"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".NotiScreenActivity"
            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="NotiScreenSmsReceiver" android:process=":remote">
            <intent-filter>
                <action android:name="android.provider.Telephony.SMS_RECEIVED"/>
            </intent-filter>
        </receiver>
    </application>

</manifest>

我的接收器类看起来像这样:

package com.csbctech.notiscreen;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.CountDownTimer;
import android.os.PowerManager;
import android.util.Log;

public class NotiScreenSmsReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // TODO Auto-generated method stub
        Log.w("NotiScreen", "Got SMS");

    }


}

但是“NotiScreenSmsReceiver”类永远不会被调用。我已经尝试了几个不同的例子,我不能为我的生活让接收器类被调用...我甚至尝试删除使用权限,我甚至没有得到关于没有权限。可能有什么不对?哦,请帮助我,你是我唯一的希望!

2 个答案:

答案 0 :(得分:2)

您是否在使用自定义短信应用(如GOSMS)的手机上运行此功能?我听说其中一些节目会停止播放,以便他们可以创建自己的通知并停止播放。

答案 1 :(得分:1)

更改

<receiver android:name="NotiScreenSmsReceiver" android:process=":remote">

<receiver android:name=".NotiScreenSmsReceiver" android:process=":remote">