1

我只是想知道为什么我的简单短信接收器可以在我的模拟器(2.3)上工作,但不能在我的手机(2.3)上工作。

每当我收到一条新短信时,我的简单程序都会显示祝酒词。它显示在模拟器上,而不是在手机上。

我尝试了两个模拟器,它可以工作。

这是代码。

public class SMSReceiver extends BroadcastReceiver {

 @Override
 public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub
    System.out.println("A new message just arrived.");
    Toast.makeText(context, "weee", Toast.LENGTH_LONG).show();
 }

}

显现:

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

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.smsreceiver.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=".SMSReceiver" android:exported="true">
        <intent-filter>
         <action android:name="android.provider.Telephony.SMS_RECEIVED"/>
        </intent-filter>
    </receiver>

</application>

</manifest>
4

1 回答 1

1

您的广播接收器已中止。添加优先级将解决问题。

<receiver>
<intent-filter android:priority="999">
<action: .... >
</receiver>

在清单中设置优先级。这应该做。

于 2013-05-09T13:26:27.617 回答