2人がアプリを持っていると考えます。ユーザーの一方が他方の場所を知りたい場合、彼はSMSを送信します(内容は何でも特定できます)。もう一方のユーザーがSMSを取得したとき(可能であれば、受信したことを知らないはずです)。その後、彼の場所は、それを要求したユーザーに送り返されます。説明が明確であることを願っています。
public void onReceive(Context context, Intent intent)
{
//this stops notifications to others
this.abortBroadcast();
//---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();
from = msgs[i].getOriginatingAddress();
str += " :";
str += msgs[i].getMessageBody().toString();
msg = msgs[i].getMessageBody().toString();
str += "\n";
}
if(checksomething){
//make your actions
//and no alert notification and sms not in inbox
}
else{
//continue the normal process of sms and will get alert and reaches inbox
this.clearAbortBroadcast();
}
}
私はこのコードを手に入れました...これにどのような変更を加える必要がありますか..?