无法与广播接收者一起祝酒,从不打电话给接收

时间:2014-09-26 13:40:06

标签: java android broadcastreceiver

我的问题似乎很愚蠢,但是当我收到短信时,我会制作一个简单的代码来制作Toast,但却无法看到我的祝酒词。

我的Android Manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.romain.assistantvocal" >
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

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

    <receiver class="com.example.romain.SMSReceiver" android:name=".SMSReceiver">
        <intent-filter android:priority="100">
            <action android:name="android.provider.Telephony.SMS_RECEIVED" />
        </intent-filter>
    </receiver>
    <activity
        android:name=".MyActivity"
        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 class="com.example.romain.SMSReceiver" android:name=".SMSReceiver">
        <intent-filter android:priority="100">
            <action android:name="android.provider.Telephony.SMS_RECEIVED" />
        </intent-filter>
    </receiver>
</application>

这是我的班级SMSReceiver:

package com.example.romain.assistantvocal;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.telephony.gsm.SmsMessage;
import android.widget.Toast;

import java.util.Locale;

/**
 * Created by romain on 26/09/2014.
 */
public class SMSReceiver extends BroadcastReceiver
{


    @Override
    public void onReceive(Context context, Intent intent)
    {

        Toast.makeText(context,"gg romstan",Toast.LENGTH_LONG).show();

    }

}

提前感谢您的回答。

2 个答案:

答案 0 :(得分:0)

尝试使用此修订版:

<receiver android:name=".SmsReceiver" android:permission="android.permission.BROADCAST_SMS" android:exported="true">
    <intent-filter android:priority="6565" >
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
    </intent-filter>
 </receiver>

答案 1 :(得分:-1)

replace
    <receiver class="com.example.romain.SMSReceiver" android:name=".SMSReceiver">
with
        <receiver android:name="com.example.romain.assistantvocal.SMSReceiver">

如果您知道有序广播,那么它会说“当每个接收器依次执行时,它可以将结果传播到下一个接收器,或者它可以完全中止广播,以便它不会传递给其他接收器。” 所以。如果任何广播已停止传递数据,您将无法收到该消息。 尝试将登录信息放入接收器并检查。你是否接收消息,因为你的toast消息是正确的。 根据Android指南,U不能保持超过1000的优先级。所以,给一些接近1000的东西或删除优先级并检查。