Запланируйте приложение BlackBerry - PullRequest
1 голос
/ 13 июля 2010

Я хочу запланировать свою заявку.

1 Ответ

6 голосов
/ 13 июля 2010

попробуйте это

// Get the current application descriptor.
ApplicationDescriptor current = ApplicationDescriptor
                        .currentApplicationDescriptor();

// Schedules are rounded to the nearest minute so ensure the
// application is scheduled for at least 1 minute in the future.
ApplicationManager.getApplicationManager().scheduleApplication(
                        current, System.currentTimeMillis() + 60001, true);

Для более подробной информации вы также можете прочитать эту статью. Запланировать запуск приложения в определенное время

...