2012年3月5日

findViewById 为空的可能原因

摘要: 三种可能原因:1) 在setContentView之前调用了,解决方法: 在setContentView之后调用。@Overridepublic void onCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); ListView lv = (ListView)findViewById(R.id.tx); setContentView(R.layout.main); //…}2) findViewById所属的VIew如果是inflater出来的... 阅读全文

posted @ 2012-03-05 19:52 lightideal 阅读(632) 评论(0) 推荐(0) 编辑

[转载] convertView&setTag方法的一点理解

摘要: 原文地址:http://blog.163.com/freemanls@126/blog/static/164585061201171210504864/前言首先我们要知道setTag方法是干什么的,SK解释为TagsUnlike IDs, tags are not used to identify views. Tags are essentially an extra piece of information that can be associated with a view. They are most often used as a convenience to store data 阅读全文

posted @ 2012-03-05 18:07 lightideal 阅读(168) 评论(0) 推荐(0) 编辑

导航