У меня есть три сервиса. < /p>
MorningNotification, unnownotification , EveningNotification
, и у меня есть этот код, чтобы инициировать их:
morning_notification = new Intent();
morning_notification.setClass(this, MorningNotification.class);
dinner_notification = new Intent();
dinner_notification.setClass(this, DinnerNotification.class);
evening_notification = new Intent();
evening_notification.setClass(this, EveningNotification.class);
< /code>
После этого я использую их так: < /p>
...
/* Запуск сервера */
startService(morning_notification);
...
...
/* Запуск сервера */
startService(dinner_notification);
...
...
/* Запуск сервера */
startService(evening_notification);
...
< /code>
Но проблема в том, что работает только MorningNotification < /strong>. Но мне нужно начать все три. W/Choreographer﹕ Already have a pending vsync event. There should only be one at a time.
12-09 09:35:03.025 12961-12961/ru.mentalcalculation E/ViewRootImpl﹕ sendUserActionEvent() mView == null
12-09 09:35:07.895 12961-12961/ru.mentalcalculation W/Choreographer﹕ Already have a pending vsync event. There should only be one at a time.
12-09 09:35:07.895 12961-12961/ru.mentalcalculation E/ViewRootImpl﹕ sendUserActionEvent() mView == null
12-09 09:35:12.845 12961-12961/ru.mentalcalculation W/Choreographer﹕ Already have a pending vsync event. There should only be one at a time.
12-09 09:35:12.845 12961-12961/ru.mentalcalculation E/ViewRootImpl﹕ sendUserActionEvent() mView == null
Подробнее здесь: https://stackoverflow.com/questions/273 ... sync-event