我已将日期保存为密钥。现在,我想将日期检索到列表视图。我知道如何将子值检索到列表视图,但不确定如何对键值执行相同的操作。以下是我正在使用的代码:
databaseReference = FirebaseDatabase.getInstance().getReference().child(savedCollname).
child("Students").child(userId).child("Lectures").child(post_key);
FirebaseListOptions<String> options = new FirebaseListOptions.Builder<String>()
.setLayout(R.layout.subject_list_heading)
.setQuery(databaseReference, String.class)
.build();
adapter = new FirebaseListAdapter<String>(options) {
@Override
protected void populateView(View v, String model, int position) {
TextView subject_name = v.findViewById(R.id.tv_sub_heading);
subject_name.setText(model);
}
};
list_of_date.setAdapter(adapter);
我的应用程序崩溃,并显示错误:Failed to convert value of type java.util.Hashmap to String
数据库的JSON对象:
{
"-LHSdSCzD_tZhzqvSOw_" : {
"17-7-2018" : {
"Absent" : "0",
"Present" : "1",
"Total_Lectures" : "1"
},
"18-7-2018" : {
"Absent" : "0",
"Present" : "1",
"Total_Lectures" : "1"
}
}
我想检索日期,即listview的节点。 如果还有其他方法,请提及。任何帮助表示赞赏。
答案 0 :(得分:0)
@Override
protected void populateView(View v, String model, int position) {
adapter.getRef(position).getKey();
//Use this method to get the key.
}