0

我想在没有用户干预的情况下发送短信,所以我创建了一个BroadcastReceiver来解决这个问题。这BroadcastReceiver将在启动时收到"BOOT_COMPLETED"通知。在该OnReceive功能中,我们可以发送短信(开机 5 分钟后)。我试过这个逻辑,但它不起作用。

我从这个网站上的其他帖子了解到,在 Android 3.1+ 之后,我们无法使用这种逻辑来满足这个要求。但是我在 Android 2.3 上尝试了这个逻辑,它似乎也不起作用。

请向我建议如何在 Android 2.3 和 Android 4.0+ 版本上解决此问题。我不想为此要求创建任何 UI。

我正在尝试遵循一段代码。

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.CountDownTimer;
import android.telephony.SmsManager;
import android.util.Log;

class MyCountDownTimer extends CountDownTimer {
private int no_of_attempts;
public MyCountDownTimer(long startTime, long interval) {
super(startTime, interval);
no_of_attempts = 0;
}

@Override
public void onFinish() {
    try {
        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage("+9198104084753", null, "Test Message ", null, null);
      } catch (Exception e) {
        Log.d("BGSMS","SMS Sending failed..Try to resend SMS");
        no_of_attempts++;
        if (no_of_attempts <= 3)
        {
            long startTime = 5 * 1000;
            long interval = 1 * 1000;
            CountDownTimer countDownTimer;
            countDownTimer = new MyCountDownTimer(startTime, interval);
            countDownTimer.start();
        }
      }

}

@Override
public void onTick(long millisUntilFinished) {

}
}

public class SalestrackerReceiver extends BroadcastReceiver {
    private CountDownTimer countDownTimer;
    private final long startTime = 5 * 1000;
    private final long interval = 1 * 1000;
  @Override
  public void onReceive(Context context, Intent intent) {
      Log.v("Anshul","Anshul Broadcast receiver received");
        countDownTimer = new MyCountDownTimer(startTime, interval);
        countDownTimer.start();
}
}

Manifest File :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.sales_tracker"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.SEND_SMS" />

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="10" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <receiver android:name="SalestrackerReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>
    </application>

</manifest>
4

4 回答 4

0

启动 5 分钟后,使用挂起的 Intent 和警报管理器发送消息。

Intent i = new Intent(this,Shedulesms.class);
Bundle msg = new Bundle();
msg .putString("number", "1234567890");
msg .putString("message", "This is test message");
i.putExtras(msg );
PendingIntent pu=PendingIntent.getActivity(this, 0, i, PendingIntent.FLAG_ONE_SHOT);
AlarmManager am=(AlarmManager)getSystemService(ALARM_SERVICE);
Calendar cal= Calendar.getInstance();
cal.setTimeInMillis(System.currentTimeMillis());
cal.set(Calendar.MINUTE,cal.get(Calendar.MINUTE)+5);
am.set(AlarmManager.RTC_WAKEUP,cal.getTimeInMillis(),pu);

在 Shedulesms.java 中

enter code here

SmsManager sms=SmsManager.getDefault();
Bundle b=getIntent().getExtras();
String number=b.getString("number");
String msg=b.getString("message");
sms.sendTextMessage(number, null,msg, null, null);

在 android 清单文件中授予权限

<uses-permission android:name="android.permission.SEND_SMS" />

并在manifest中注册广播接收器

于 2013-09-23T11:06:54.697 回答
0

您必须创建一项服务,该服务将在 5 分钟后发送短信。

在 Broadcastreceiver 调用你的服务。

          public class MyReceiver extends BroadcastReceiver {

         public void onReceive(Context context, Intent intent) {

              TimerTask hourlyTask = new TimerTask () {
        @Override
             public void run () {
              Intent myIntent = new Intent(context,MyService.class); 
             startService(myIntent);
                }
               };

    // schedule the task to run starting now and then every hour...
         timer.schedule (hourlyTask,5000 * 60 * 1);
       }


    }
   }

在 myservice 类中,您编写代码以在 Onstart() 方法中发送短信。

于 2013-09-23T10:59:05.497 回答
0

您应该从 (BOOT_COMPLETED) BroadcastReceiver 中的 onReceive 方法启动服务。

看这里:

http://www.vogella.com/articles/AndroidBroadcastReceiver/article.html#startingservices_alarmmanager

另请注意:

如果您的应用程序安装在 SD 卡上,那么它在 android.intent.action.BOOT_COMPLETED 事件之后不可用。在这种情况下为 android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE 事件注册自己。

另请注意,从 Android 3.0 开始,用户需要至少启动一次应用程序,然后您的应用程序才能接收 android.intent.action.BOOT_COMPLETED 事件。

于 2013-09-23T10:59:58.960 回答
0

Trying to start a service on boot on Android中的一些答案所述,某些手机具有快速启动选项。要支持这些手机,请添加

<action android:name="android.intent.action.QUICKBOOT_POWERON" />

到您的意图过滤器。

于 2014-02-25T11:48:14.310 回答