我目前正在为Android编码,我希望当我收到短信时,应用程序执行一些操作......现在奇怪的部分......我在模拟器中测试以下代码它100%工作但当我用GO短信带到我的android 2.3.3它根本不起作用:\
import android.content.BroadcastReceiver;
import android.content.Context;<br />
import android.content.Intent;<br />
import android.os.Bundle;<br />
import android.telephony.gsm.SmsMessage;<br />
import android.widget.Toast;
public class SMSReceiver extends BroadcastReceiver {
String lsms;
/* package */ static final String ACTION =
"android.provider.Telephony.SMS_RECEIVED";
@Override
public void onReceive(Context context, Intent intent) {
//---get the SMS message passed in---
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null) {
//---retrieve the SMS message received---
Object[] pdus = (Object[]) bundle.get("pdus");
msgs = new SmsMessage[pdus.length];
for (int i=0; i<msgs.length; i++){
msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
str += "SMS from " + msgs[i].getOriginatingAddress();
str += " :";
str += msgs[i].getMessageBody().toString();
str += "\n";
}
//---display the new SMS message---
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
}
}
}
是的......我在AndroidManifest.xml中添加了必要的代码 许可:
<uses-permission android:name="android.permission.RECEIVE_SMS" />
意图
<receiver android:name=".receiver.SMSReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
答案 0 :(得分:0)
我听说过GO短信和其他短信应用程序拦截短信收到的广播,并阻止它接通其他任何内容,以便只有在收到短信时才会收到通知。您应该尝试卸载GO短信,看看它是否有效。
不幸的是,如果这是错误的,那就没有解决问题的方法了,因为他们将优先级设置为可以达到的最高值,因此在广播被销毁之前没有任何东西可以接收广播。