|
@ -355,9 +355,8 @@ public class PrivateZhuangListAdapter extends BaseAdapter {
|
355
|
355
|
|
356
|
356
|
String deny_inf = datas.get(position).getString("deny_inf");
|
357
|
357
|
if ("".equals(deny_inf)) {
|
358
|
|
holder.reason.setVisibility(View.GONE);
|
|
358
|
holder.reason.setText("");
|
359
|
359
|
} else {
|
360
|
|
holder.reason.setVisibility(View.VISIBLE);
|
361
|
360
|
holder.reason.setText("原因:" + deny_inf);
|
362
|
361
|
}
|
363
|
362
|
}
|
|
@ -401,7 +400,6 @@ public class PrivateZhuangListAdapter extends BaseAdapter {
|
401
|
400
|
String code = JsonUtils.getKeyResult(response, "code");
|
402
|
401
|
if (code.equals("200")) {
|
403
|
402
|
getListData();
|
404
|
|
notifyDataSetChanged();
|
405
|
403
|
}
|
406
|
404
|
}
|
407
|
405
|
});
|
|
@ -446,6 +444,8 @@ public class PrivateZhuangListAdapter extends BaseAdapter {
|
446
|
444
|
PrivateZhaungListActivity.privateZhuangListAdapter = new PrivateZhuangListAdapter(datas, MainApplication.context);
|
447
|
445
|
PrivateZhaungListActivity.listview.setAdapter(PrivateZhaungListActivity.privateZhuangListAdapter);
|
448
|
446
|
}
|
|
447
|
|
|
448
|
notifyDataSetChanged();
|
449
|
449
|
}
|
450
|
450
|
}
|
451
|
451
|
});
|