「更新」と書かれた人にSMSを送信する場合。私はその人の位置を知ることができます。私は任意のSMSが到着したときにアクティブになる放送受信機を作ります。それがUPDATEと一致する場合、他のユーザーの場所を送信します。SMSの内容が一致する場合、somoneの場所を取得する
放送受信機。
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();
}
}
あなたは疑問を持っていますか?あなたは何も尋ねていません。 – Kuffs
私の質問はどのように私はあなたがSMSを送信した人の場所が受信される必要がありますUPSTATEと一致する場合は、SMSのコンテンツ(希望はあなたが私はコンテンツを意味するワットを得ることを期待する)です –