我读了一个XML,它工作正常,我有一个Adaptar,它工作正常。我尝试在适配器中读取XML的数据。
编辑:void onPostExecute读取XML的数据,但是当我调整适配器时,适配器无法正常工作。适配器在createData函数中正常工作。
@Override
protected void onPostExecute(Void result) {
ArrayList<datos_calendario> arraydir = new ArrayList<datos_calendario>();
datos_calendario grupo;
for(PostValue post : helper.posts) {
// Results of XML
);
if (pd!=null) {
if (pd.isShowing()) {
pd.dismiss();
}
}
}
public void createData() {
// Adapter working ok
for (int j = 0; j < 5; j++) {
adapter_clase_group group = new adapter_clase_group("Test " + j);
for (int i = 0; i < 5; i++) {
group.children.add("Sub Item" + i);
}
groups.append(j, group);
}
}
答案 0 :(得分:0)
我甚至无法阅读问题,但是......
for(PostValue post : helper.posts) {
// Results of XML
);
应该是这样的:
for(PostValue post : helper.posts) {
// Results of XML
}