在特定时间发送自动消息

时间:2012-07-10 09:01:30

标签: android

我正在开发一个应用程序,我需要将短信发送到特定的电话号码。我可以使用以下代码发送短信。

try {
                SmsManager smsManager = SmsManager.getDefault();
                smsManager.sendTextMessage(phoneNo, null, sms, null, null);
                Toast.makeText(getApplicationContext(), "SMS Sent!",
                        Toast.LENGTH_LONG).show();
            } catch (Exception e) {
                Toast.makeText(getApplicationContext(),
                        "SMS faild, please try again later!",
                        Toast.LENGTH_LONG).show();
                e.printStackTrace();
            }

现在我想要的是短信应该自动进行。消息应该自动进入的时间存储在MySQL数据库中。因此,我需要在该时间到来时继续检查的代码,然后自动将消息发送到该号码。它是一种提醒事物。用户将在应用程序中保留提醒,例如;我需要在1小时后收到消息。所以1小时后消息应该会出现。 PLZ帮助??

最后我明白了。

/** Code For reminder is here */
            int time=Integer.parseInt(answer);
            int num = (int)System.currentTimeMillis();  
            Intent intent = new Intent(getApplication(), MyBroadcastReceiver.class);
            intent.putExtra("phoneNo",phoneNo);   
            Calendar calendar = Calendar.getInstance();
            calendar.setTimeInMillis(System.currentTimeMillis());
            calendar.add(Calendar.MINUTE, time);
            PendingIntent pendingIntent = PendingIntent.getBroadcast(
                getApplicationContext(), num, intent, 0);
            AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
            alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()
                + calendar.getTimeInMillis() , pendingIntent);
            Toast.makeText(getApplication(), "Alarm set in " + time + " minutes",
            Toast.LENGTH_SHORT).show();
            /** Code for reminder is over */

我的收件人代码是

 public void onReceive(Context context, Intent intent) {
    String sms= "Your turn is about to come. Please be ready. Thank You";
    String phoneNo;
    Bundle extrasBundle = intent.getExtras();
    phoneNo=extrasBundle.getString("phoneNo");
    try {
        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage(phoneNo, null, sms, null, null);
        Toast.makeText(context, "SMS Sent to " + phoneNo,Toast.LENGTH_LONG).show();
        } catch (Exception e) {
        Toast.makeText(context,"SMS faild, please try again later!",Toast.LENGTH_LONG).show();
        e.printStackTrace();
        }

}

以防万一有人可能需要这个......感谢

2 个答案:

答案 0 :(得分:3)

为此目的使用AlarmManager。创建一个接收器,在清单文件中注册它。 with alarmaManager在特定时间后设置警报。 在接收时将您的SendSMS代码放入Receiver。

编辑:我回答了这个问题,它不适合当前的情况,请阅读此博客以获取更好的替代方案Background schedulers

答案 1 :(得分:2)

Alarmmanager帮助您在特定时间呼叫,使用AlarmManager并将所有发送消息代码放入BroadcastReceiver的OnReceive方法中。请遵循此Link。还记得改变清单文件。一切顺利:)