findViewById 为空的可能原因
三种可能原因:
1) 在setContentView之前调用了,解决方法: 在setContentView之后调用。
@Override
public void onCreate(BundlesavedInstanceState)
{
super.onCreate(savedInstanceState);
ListView lv = (ListView)findViewById(R.id.tx);
setContentView(R.layout.main);
//…
}
2) findViewById所属的VIew如果是inflater出来的,那么需要加上inflaterView.findViewById(R.id.xx)
ListView lv = (ListView)inflaterView.findViewById(R.id.xx)
3) 很郁闷的一种错,常发生在inflater之后调用,View不空,但是find之后抛空,其实是Eclipse本身的原因,解决方法: Clean Project-Refresh-Build, 问题解决~~~
View rowview = (View)inflater.inflate(R.layout.rowview, parent, false);
TextView tx =(TextView)rowview.findViewById(R.id.tx);
TextView tc =(TextView)rowview.findViewById(R.id.tc);
posted on 2012-03-05 19:52 lightideal 阅读(632) 评论(0) 编辑 收藏 举报