Android Firebase 奇怪的数据映射

标签 android arraylist firebase firebase-realtime-database

我从 Debug模式得到这个错误,我不知道为什么会发生,因为一切都应该是好的。有些数据不为空,有些数据为空,有谁知道为什么会这样?

enter image description here

这是我的 Firebase 代码:

 mDatabase = FirebaseDatabase.getInstance();

    mReference = mDatabase.getReferenceFromUrl("https://basketball-training-app.firebaseio.com/article");

    mReference.addValueEventListener(new ValueEventListener() {

  @Override
   public void onDataChange(DataSnapshot dataSnapshot) {

    articleModel = new ArrayList<>();
    for (DataSnapshot postSnapshot: dataSnapshot.getChildren()) {

        articleModel.add(postSnapshot.getValue(ArticleModel.class));
    }



    adapter = new ArticleAdapter(getActivity().getApplicationContext(), R.layout.fragment_article_list_items, articleModel);

    mListView.setAdapter(adapter);
    mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, final int position, long id) {
        Intent intent = new Intent(getActivity(), ArticleDetailsActivity.class);
        final String postKey = mReference.getKey();
        intent.putExtra("post_key", postKey);
        getActivity().startActivity(intent);

    }
});
  }
        @Override
        public void onCancelled(DatabaseError databaseError) {
            throw databaseError.toException();
        }
    });

这是我来自 Firebase 的数据:

[ {
"body" : "Becoming a professional basketball player take ",
"id" : "2",
"photo" : "http://img.aws.livestrongcdn.com/ls-article-image-640/cme/cme_public_images/www_livestrong_com/photos.demandstudios.com/getty/article/108/235/489314780_XS.jpg",
"published_date" : "2016-09-19",
"thumb" : "http://img.aws.livestrongcdn.com/ls-article-image-640/cme/cme_public_images/www_livestrong_com/photos.demandstudios.com/getty/article/108/235/489314780_XS.jpg",
"title" : "What Training Is Necessary to Become a Professional Basketball Player?",
"video" : ""
}, {
"body" : "It's basketball; these are the best movies of",
"id" : "0",
"photo" : "http://images.contentful.com/7h71s48744nc/1w3KueQHLi2G0oyguoScQE/74af0a5222728503eff818ddcea6865e/coach-carter.jpg",
"published_date" : "2016-09-19",
"thumb" : "http://ecx.images-amazon.com/images/I/51FYWuWGPLL._SL160_.jpg",
"title" : "Top Ten Greatest Basketball Movies",
"video" : ""
 }, {
"body" : "Basketball is a very popular sport played all around the ",
 "id" : "1",
 "photo" : "http://mba.org.mt/wp-content/uploads/2015/12/basketball-wallpaper-1280x768-1180x768.jpg",
 "published_date" : "2016-09-19",
 "thumb" : "http://mba.org.mt/wp-content/uploads/2015/12/basketball-wallpaper-1280x768-1180x768.jpg",
  "title" : "Popularity of Basketball Around the World",
 "video" : ""
 } ]

这是模型:

 @PropertyName("thumb")
private String thumb;

@PropertyName("title")
private String title;

@PropertyName("published_date")
private String published_date;

@PropertyName("photo")
private String photo;

@PropertyName("body")
private String body;

@PropertyName("id")
private String id;

@PropertyName("video")
private String video;

public ArticleModel() {
}

public ArticleModel(String id, String title, String thumb, String published_date, String photo, String body, String video) {
    this.id = id;
    this.title = title;
    this.thumb = thumb;
    this.published_date = published_date;
    this.photo = photo;
    this.body = body;
    this.video = video;
}



public String getBody() {
    return body;
}

public void setBody(String body) {
    this.body = body;
}

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

public String getThumb() {
    return thumb;
}

public void setThumb(String thumb) {
    this.thumb = thumb;
}

public String getTitle() {
    return title;
}

public void setTitle(String title) {
    this.title = title;
}

public String getData() {
    return published_date;
}

public void setData(String published_date) {
    this.published_date = published_date;
}

public String getImage() {
    return photo;
}

public void setImage(String photo) {
    this.photo = photo;
}

public String getVideoURI() {
    return video;
}

public void setVideoURI(String video) {
    this.video = video;
}

最佳答案

setter 和 getter 方法应与属性名称同名。

photopublished_date 的 getter 和 setter 方法添加或更改为

public void setPhoto(String photo) {
    this.photo = photo;
}

public String getPhoto() {
    return photo;
}

public void setPublished_date(String published_date) {
    this.published_date = published_date;
}

public String getPublished_date() {
    return published_date;
}

关于Android Firebase 奇怪的数据映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39945437/

相关文章:

android - Android Studio 中 unbindService 会自动清理通知图标吗?

java - 如何在android中通过引用传递对象以更改原始对象?

android - 访问被拒绝查找属性 "ro.vendor.df.effect.conflict"

java - 如何从存储在 ArrayList 中的多级 HashMap 中获取值?

java - 如何确保列表中的项目是连续的?

java - Java List<> 的问题

java - 如何从 Arraylist 获取字符串?

Firebase 安全规则授予权限被拒绝?

ios - Collection View 仅显示数组中的一项

java - 发现名称 : getText 存在冲突的 getter