-4
我知道Firebase包含发送通知的部分,在控制台中编写消息,但我想从表中获取值以显示通知中的值。这可能吗?如何发送Android通知从Firebase数据库中提取数据?
我知道Firebase包含发送通知的部分,在控制台中编写消息,但我想从表中获取值以显示通知中的值。这可能吗?如何发送Android通知从Firebase数据库中提取数据?
这是我如何做:
//火力地堡上下文 Firebase.setAndroidContext(本); // URL数据库firebase Firebase ref =新的Firebase(Config.FIREBASE_URL);
ref.addValueEventListener(new ValueEventListener() {
//DataSnapshot para leer datos de un bd
@Override
public void onDataChange(DataSnapshot snapshot) {
//Get Actual Value(getchildren)
for (DataSnapshot postSnapshot : snapshot.getChildren()) {
//Getting the data from snapshot
Person person = postSnapshot.getValue(Person.class);
//Intent(Get components GUI)
Intent intent = new Intent();
//Allow External Application(PendingIntent)
PendingIntent pInent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
//Notificacion
Notification noti = new Notification.Builder(MainActivity.this)
//Propiedades
.setContentTitle("Notificacion")
.setSound(Uri.EMPTY)
.setContentText("Nombre: "+person.getName()+"\t\tDireccion: "+person.getAddress())
.setSmallIcon(R.mipmap.bus)
.setContentIntent(pInent).getNotification();
//Cancel notification
noti.flags = Notification.FLAG_AUTO_CANCEL;
//Get Notification
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
nm.notify(1, noti);
}
}
@Override
public void onCancelled(FirebaseError firebaseError) {
System.out.println("The read failed: " + firebaseError.getMessage());
}
});
我创建了两个类。一个用于Firebase数据库的URL,另一个用于设置并获取值“名称”和“地址”。 –
像这样? https://firebase.googleblog.com/2016/08/sending-notifications-between-android.html –