我正在使用Firebase Job Dispatcher执行定期任务,该任务将每15分钟执行一次并检查firebase数据库中的数据并显示有关最新数据的通知。
我面临的问题是,监听器未在onStartJob
中正确连接,即onDataAdded
内的日志记录语句永远不会被调用。
我已将下面的代码链接到了
public class FetchInfoService extends JobService {
InfoObject note;
NotificationCompat.Builder notificationBuilder;
private static final String TAG = "SyncService";
public FetchInfoService() {
}
@Override
public boolean onStartJob(com.firebase.jobdispatcher.JobParameters job) {
Log.e(TAG, "Executing job id: " + job.getTag());
DatabaseReference dbReference = FirebaseDatabase.getInstance().getReference().child(CONTENT);
Log.e(TAG,dbReference.getKey());
dbReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
Log.e(TAG,"OnDataChanged Called"); //----Never Called
for (DataSnapshot infoDataSnapshot : dataSnapshot.getChildren()) {
note = infoDataSnapshot.getValue(InfoObject.class);
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
Log.e(TAG,"Listener Cancelled");
}
});
notificationBuilder = new NotificationCompat.Builder(getApplicationContext())
.setSmallIcon(R.drawable.ic_delete_black_48dp)
.setContentTitle(note.getTitle())
.setContentText(note.getDescription());
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, notificationBuilder.build());
return false;
}
@Override
public boolean onStopJob(com.firebase.jobdispatcher.JobParameters job) {
Log.e(TAG, "Finished job: " + job.getTag());
return false;
}
}
由于
答案 0 :(得分:0)
显然,为什么从未调用过监听器的原因是我的代码在我显示通知的时候一直抛出一个空指针异常,因此它永远不会达到我附加监听器和监听数据库中的更改的程度。
移动代码以显示onChildAdded
内的通知,为我修复了它。