我知道有很多像我这样的类似问题,但我已经阅读并尝试了所有内容,但仍无法解决此问题。我想要实现的是使用来自firebase的数据填充我的listview。我正在关注youtube的教程,但我添加了一些东西,特别是时间戳。错误发生在我的for循环中并说:
类java.util.Map具有泛型类型参数,请使用GenericTypeIndicator代替
这是我的数据库:
我的Notes.java
public class Notes {
String noteId;
String noteCategory;
String note;
String rating;
public Map timeStamp;
public Notes(){
}
public Notes(String noteId, String noteCategory, String note, String rating, Map timeStamp) {
this.noteId = noteId;
this.noteCategory = noteCategory;
this.note = note;
this.rating = rating;
this.timeStamp = timeStamp;
}
public String getNoteId() {
return noteId;
}
public String getNoteCategory() {
return noteCategory;
}
public String getNote() {
return note;
}
public String getRating() {
return rating;
}
public Map<String,String> getTimeStamp() { return timeStamp;}
}
以下是我的NoteList.java
@Override
protected void onStart() {
super.onStart();
databaseNotes.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
notesList.clear();
for(DataSnapshot noteSnapshot : dataSnapshot.getChildren()){
Notes notes = noteSnapshot.getValue(Notes.class);
notesList.add(notes);
}
NoteList adapter = new NoteList(MyNotes.this, notesList);
listViewNotes.setAdapter(adapter);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
任何建议都将不胜感激!提前谢谢。
编辑:好的,我已经尝试了建议的答案,在我记录地图后,它在控制台上显示我的数据。但是,如何将我的地图迭代到列表视图中?Map<String, Object> map = (Map<String, Object>) dataSnapshot.getValue();
答案 0 :(得分:1)
从查看您的数据库看起来,您应该使用int
或long
类型而不是map
类型,因为您的时间戳有数字值