码迷,mamicode.com
首页 > 其他好文 > 详细

listView/GridView getChild获取不到的解决方法

时间:2014-12-15 19:08:39      阅读:141      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!