android-细节问题-ListView 在 setAdapter() 后 getChildCount() 值为0
因为setAdapter是异步的,所以需要在setAdapter之后马上调用lv.post()方法,这样操作的就是当前的listviewlv=(ListView)findViewById(R.id.list);
lv.setAdapter(adapter);
lv.post(newRunnable(){
publicvoidrun(){
//fileList为与adapter做连结的list总数