标签:getchild
在onCreate或onResume中调用了getChildAt()方法,这时候adapter中的Item还没有放入到AdapterView中去....
解决方法,当activity获得焦点事件的时候在调用就没问题了
@Override
public void onWindowFocusChanged(boolean hasFocus) {
// TODO Auto-generated method stub
if(hasFocus){
listView.getChildAt(int) }
super.onWindowFocusChanged(hasFocus);
}
listView/GridView getChild获取不到的解决方法
标签:getchild
原文地址:http://blog.csdn.net/leehu1987/article/details/41946063