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;
}
}
ありがとう