在Firebase上为特定孩子检索实时数据

时间:2019-01-02 05:33:21

标签: android-studio-3.0

图片参考:https://imgur(dot)com/a/3hpCHSA

public class Post {
  private String bend;
  public Post() {

  }

  public Post(String content) {
    this.bend = content;
  }


  public String getBend() {
    return bend;
  }

  public void setBend(String bend) {
    this.bend = bend;
  }
}

我希望我的代码能够获取每个时间数据库,例如04:02:56并在其中显示数据。以前,我只有数据库/随机/弯曲,因此能够检索,但是现在我的数据是数据库/中指/随机。我不知道要更改字段以检索列的方式,因为以前它不会一直变化,因为它一直处于弯曲状态,但是现在它将随着时间不断更新。我也想检索(中指)2018年12月27日星期四04:02:56这行,因为我想在我的应用程序中显示(中指)2018年12月27日星期四04:02:56>然后使用recyclerview for

0 个答案:

没有答案