我正在开发一个应用程序,它会在上午8点和晚上8点发出通知,所以我想做的就是给出2个不同的通知,比如早上8点他打招呼它早上和晚上8点他说亲爱的,所以我怎么能通过1个服务和1个报警管理器来做到这一点。 有人可以给我充分的例子。
答案 0 :(得分:0)
public class NotifTriggerService extends IntentService {
public static final String NOTIF_TYPE = "notif_type";
public static final String NOTIF_TYPE_MORNING = "notif_day";
public static final String NOTIF_TYPE_NIGHT = "notif_night";
/**
* Creates an IntentService. Invoked by your subclass's constructor.
*/
public NotifTriggerService() {
super("Trigger");
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleIntent(Intent intent) {
String notifType = intent.getStringExtra(NOTIF_TYPE);
if (notifType.equals(NOTIF_TYPE_MORNING)) {
//Send morning notification
} else if( notifType.equals(NOTIF_TYPE_NIGHT)) {
//Send night notification
}
}
现在,在启动您的服务时,只需添加一个这样的额外内容 -
Intent intent = new Intent(getActivity(), YourService.class);
intent.putExtra(YourService.NOTIF_TYPE, YourService.NOTIF_TYPE_MORNING);