想要从Firebase数据库中检索唯一的卢比值?

时间:2019-04-19 05:47:30

标签: android firebase-realtime-database textview

您可能会认为这篇文章是重复的,但请相信我我已经尝试了所有这些文章,但这不会使我无所适从。

我是初学者,目前正在学习中。

我想在文本视图中仅检索rupees的{​​{1}}的{​​{1}}的{​​{1}}值

这是数据库树 enter image description here

这是我的代码。

  

java

standard 1st

请帮助!

1 个答案:

答案 0 :(得分:1)

尝试:-

 d2ref = FirebaseDatabase.getInstance().getReference().child("2018-19").child("Gat No 14")
                    .child("School no 109").child("Standard 1st");
            d2ref.addValueEventListener(new ValueEventListener() {
                @Override
                public void onDataChange(@NonNull DataSnapshot dataSnapshot) {


                      String gat = dataSnapshot.child("Rupees").getValue().toString();
                     // and set tha gat in your textView
                }

                @Override
                public void onCancelled(@NonNull DatabaseError databaseError) {

                }
            });