我想在没有用户干预的情况下发送短信,因此我创建了一个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>
答案 0 :(得分: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()方法中发送sms。
答案 1 :(得分: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事件之前至少启动一次应用程序。
答案 2 :(得分:0)
使用待处理的Intent和Alarm Manager在启动5分钟后发送消息。
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" />
并在最明显的情况下注册广播接收器
答案 3 :(得分:0)
正如Trying to start a service on boot on Android中的一些答案中所述,某些手机具有fastboot选项。要支持这些手机,请添加
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
到你的意图过滤器。