0

30 日ごとに実行する必要があるアラームがあります。電話の電源がオフになる問題を回避するために、これはカレンダーベースにする必要があると判断しました. 私が設計しようとしている方法は、アプリケーションが開かれたときです.wifiデータの使用状況をSMSで送信します. 次に、最初に実行される日付に応じて、その日付から 30 日後にアラームが再度実行されるようにスケジュールします。

テスト目的で、30 日間を 1 時間に短縮しました。最初の SMS は送信 (および受信) されますが、1 時間後には何も起こりません。つまり、アラームの再発に問題があるようです。

PS

これを構築するために次の例を使用しています。

毎年および毎月の繰り返しアラームを実装する方法は?

しかし、繰り返しアラームを実装するのに少し苦労しています。私の問題は、次の例のセクションにあると思います。

// schedule alarm for today + 1 day
    Calendar calendar = Calendar.getInstance();
    calendar.add(Calendar.DATE, 1);

アラームを実行する必要がある時間を追加するのではなく、カレンダーから取得している実際の時間に時間を追加するようです (これを指摘してくれてありがとう、Lexandro に感謝します)。しかし、まだアラームを実行できないようです。現在の時刻からの指定された時間 (または日数) に基づいています。

ソース:

public class WifiMonitor extends Activity {

    Button sendButton;

    EditText msgTextField;

    private PendingIntent pendingIntent;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView infoView = (TextView) findViewById(R.id.traffic_info);

        double totalBytes = (double) TrafficStats.getTotalRxBytes()
                + TrafficStats.getTotalTxBytes();
        double mobileBytes = TrafficStats.getMobileRxBytes()
                + TrafficStats.getMobileTxBytes();
        totalBytes -= mobileBytes;
        totalBytes /= 1000000;
        mobileBytes /= 1000000;

        NumberFormat nf = new DecimalFormat("#.##");
        String totalStr = nf.format(totalBytes);
        String mobileStr = nf.format(mobileBytes);
        String info = String.format(
                "Wifi Data Usage: %s MB\tMobile Data Usage: %s MB", totalStr,
                mobileStr);
        infoView.setText(info);

        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage("7862611848", null, info, null, null);
        String alarm = Context.ALARM_SERVICE;

        AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        Calendar calendar = Calendar.getInstance();
        calendar = Calendar.getInstance();
        calendar.set(Calendar.DAY_OF_WEEK, 0);
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        calendar.set(Calendar.MINUTE, 1);
        calendar.set(Calendar.SECOND, 0);

        Intent Aintent = new Intent("REFRESH_THIS");
        PendingIntent pi = PendingIntent.getBroadcast(this, 0, Aintent, 0);
        am.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),
                AlarmManager.INTERVAL_DAY, pi);

        // reschedule to check again tomorrow
        Intent serviceIntent = new Intent(WifiMonitor.this, Alarm.class);
        PendingIntent restartServiceIntent = PendingIntent.getService(
                WifiMonitor.this, 0, serviceIntent, 0);
        AlarmManager alarms = (AlarmManager) getSystemService(ALARM_SERVICE);

        // cancel previous alarm
        alarms.cancel(restartServiceIntent);

        // schedule alarm to run again
        calendar.add(Calendar.HOUR, 1);

        // schedule the alarm
        alarms.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),
                restartServiceIntent);




    }
}

警報:

public class Alarm extends Service {

// compat to support older devices
@Override
public void onStart(Intent intent, int startId) {
    onStartCommand(intent, 0, startId);
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

    // check to ensure everything is functioning

    Toast toast = Toast.makeText(this, "WiFi Usage Sent", 2000);
    toast.show();

    // send SMS
    String sms = "";
    sms += ("\tWifi Data Usage: "
            + (TrafficStats.getTotalRxBytes()
                    + TrafficStats.getTotalTxBytes() - (TrafficStats
                    .getMobileRxBytes() + TrafficStats.getMobileTxBytes()))
            / 1000000 + " MB");

    SmsManager smsManager = SmsManager.getDefault();
    smsManager.sendTextMessage("7862611848", null, sms, null, null);

    return START_STICKY;
}

@Override
public void onCreate() {

    // TODO Auto-generated method stub
}

@Override
public IBinder onBind(Intent intent) {

    // TODO Auto-generated method stub

    return null;

}

@Override
public boolean onUnbind(Intent intent) {

    // TODO Auto-generated method stub

    return super.onUnbind(intent);

}

}
4

2 に答える 2

0

getInstance() メソッドの Calendar API から:

デフォルトのタイム ゾーンとロケールを使用してカレンダーを取得します。返される Calendar は、デフォルト ロケールのデフォルト タイム ゾーンの現在の時刻に基づいています。

したがって、フィールドを設定する必要はありません。 add メソッドを使用して、アラームを設定したい時間にカレンダーをインクリメントするだけです。

于 2013-06-17T20:16:24.067 に答える