findViewById返回null
所属栏目:
Android
时间:2012-01-02 09:15
作者:狼子
如果代码中findViewById中在setContentView后的,比如:
setContentView(R.layout.main);
btBook = (Button)this.findViewById(R.id.btBook);
Log.i("test", "btBook is ok.");
if(btBook == null) { Log.i("test", "btBook is null"); }
如果这种情况下返回null,要相信自己的代码没有问题,解决的办法是:Project->clean