大家好。 我发送消息给一个设备并在另一个设备的应用程序中接收这个短信。我使用Broascast接收器来收听短信的正文或号码。我已经取得了明天的所有许可,但是我的接收者没有打电话。我在2天内使用了很多与清单相关的东西像android:priority,android:enabled =“true”,android:exporte但是stiil接收器无法工作。
/* final SmsManager sms = SmsManager.getDefault();*/
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "in receiver", Toast.LENGTH_SHORT).show();
// TODO Auto-generated method stub
Log.e("out", "out");
if(intent.getAction().equals("android.provider.Telephony.SMS_RECEIVED")){
Bundle bundle = intent.getExtras(); //---get the SMS message passed in---
SmsMessage[] msgs = null;
String msg_from;
Toast.makeText(context, "broad cast reciver", Toast.LENGTH_SHORT).show();
if (bundle != null){
//---retrieve the SMS message received---
try{
Log.e("in", "in");
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]);
msg_from = msgs[i].getOriginatingAddress();
String msgBody = msgs[i].getMessageBody();
}
}catch(Exception e){
// Log.d(“异常捕获”,e.getMessage()); } } } }
清单.... &LT;
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_SMS" />
<application android:icon="@drawable/ic_launcher">
<activity android:name=".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=".SmsListener" android:enabled="true" android:exported="true" android:permission="android.permission.BROADCAST_SMS">
<intent-filter android:priority="1000">
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
</application>
答案 0 :(得分:1)
让你的SmsListener扩展BroadcastReceiver:
public class SmsListener extends BroadcastReceiver {
public SmsListener() {
}
@Override
public void onReceive(Context context, Intent intent) {
//you code here
}
}
现在您可以在主要活动中注册接收器:
String SMS_RECEIVED = "android.provider.Telephony.SMS_RECEIVED";
SmsListener smsListener = new SmsListener();
registerReceiver(smsListener, new IntentFilter(SMS_RECEIVED));
请记住最后取消注册。
答案 1 :(得分:1)
当我在我的设备中卸载其他应用程序时,它也具有与我的应用程序相同的功能,例如hello应用程序(在Play商店中查看)。然后我安装了我的应用程序它工作得很好。我认为另一个应用程序设置优先级或其他东西新的传入短信的清单。因此我们的应用广播接收器不叫
答案 2 :(得分:0)
将优先级更改为1使其对我有用。它默认为1000.
我还必须将名称从.SmsListener更改为.MainActivity $ SmsListener,但这可能取决于您定义类的位置(在我的情况下,它在MainActivity中)。
<receiver android:name=".MainActivity$SmsListener"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BROADCAST_SMS">
<intent-filter android:priority="1">
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>