我正在尝试使用广播短信接收器。但它在下面不起作用的是我的androidmanifest.xml和广播接收器类代码。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codeinsects.smsreceivernew"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="18" />
<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" >
<receiver android:name=".NewReceiver">
<intent-filter android:priority="999" >
<action android:name="android.provider.Telephony.SMS_RECEIVED"></action>
</intent-filter>
</receiver>
</application>
</manifest>
NewReceiver类是:
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;
public class NewReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
Log.w("test",
"in Receiver. arg1.getAction():" + arg1.getAction());
Toast.makeText(arg0, "YES GOT IT", Toast.LENGTH_LONG).show();
}
}
根据我所有代码都可以,但我不知道为什么它不起作用。
先谢谢。