2

标题没有我想的那么具体,所以这里有更多细节。我正在尝试制作一个应用程序,可以在驾驶时自动回复任何传入的文本消息。由于这个社区,这个应用程序已经 100% 正常工作,但我想扩展它。我的目标是获取发件人的号码(我已经有了这个),然后以某种方式单独保存,以便它连续两次(或更多)自动回复同一个人。

public class Receiver extends BroadcastReceiver {
    public static String number = "";
    public static String sms = "";

    @Override
    public void onReceive(Context context, Intent intent) {
        Bundle bundle = intent.getExtras();
        SmsMessage[] msgs;

        if (bundle != null) {
            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]);
                number = msgs[i].getOriginatingAddress();
                sms = msgs[i].getMessageBody();
            }

            if (Main.serviceBroadcast) {
                String sent = "SMS_SENT";
                PendingIntent pi = PendingIntent.getBroadcast(context, 0, new Intent(sent), 0);
                SmsManager sm = SmsManager.getDefault();

                if (Main.serviceReply && !number.equals("")) {
                    sm.sendTextMessage(number, null, Main.reply, pi, null);
                    Toast.makeText(context, "replied to " + number, Toast.LENGTH_SHORT).show();
                }
            }
        }
    }
}

如果您想要该程序的完整源代码,请访问http://mellowdev.net

4

2 回答 2

0
String number = "";
String person = "";
//Create empty list this way
ArrayList<String> phoneNumbers = new ArrayList<String>();
ArrayList<String> personNames = new ArrayList<String>();

// add them together and the number array and person array will always be in sync 
// when you call them

//Add to your list this way
number.add(phoneNumbers);
personNames.add(person);

//get from your list this way for example or you can add them to a list view, etc..
// you use get to get the string stored in the list at that position.
number = phoneNumbers.get(2);
person = personNames.get(2);

//or you can do a for loop to check them all to see if they match something
for( int i = 0; i < phoneNumbers.length - 1; i++)
{
person = personNames.get(i);

   if (person.matches("Nicolas")) {
// do something with it here
 }

 }

现在您可以轻松保存并获取这些数组列表,查看我一年前提出的问题。 将 ArrayList 保存到 android 上的文件

给你!

于 2013-07-19T22:49:34.983 回答
0

我知道这可能不是最好的答案。但是我在我的应用程序中所做的是创建了一个 SQLite 数据库来存储这些数字,因为我后来实际上也需要它们。因此,每当收到一条新消息时,我都会检查数据库,如果该号码不在数据库中,则执行 SMS 代码,并将其添加到数据库中。

此外,由于电话知道该人正在开车,因此您必须最初设置了一些开关。因此,当驾驶模式被删除时,您可以删除表中的数据。

于 2013-07-19T06:20:17.433 回答