我在我的Android应用中使用Firebase数据库。 当我从ListView中单击项目时,它显示页眉正确,但另一个页脚显示不正确,仅显示了我在另一个活动中的页脚上插入的最后一个数据!
我尝试了粘贴在“显示一些代码”栏中的代码
LV_COMPUTING.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int position, long l) {
String current_Course = adapterView.getItemAtPosition(position).toString();
String Exp1 = subject2.getExplaination1().toString();
String EG1 = subject2.getExample1().toString();
Intent in = new Intent(View_Computing.this, Subject2_show.class);
in.putExtra("Course", current_Course);
in.putExtra("Exp1", Exp1);
in.putExtra("Eg1", EG1);
startActivity(in);
}
});
}