Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误

Android使用TabHost做了个练习的小例子,TabLayout程序,安装到模拟器时总是异常终止could not create tab contentbecause could not find view with id 。。。错误

我试验TabHost的时候用的是多个XML一个Activity的方式。建立了三个布局文件作为Tab的选项页。各种文件配置好以后运行总是出错。在日志里的错误信息如下:

Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第1张图片


Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第2张图片

找了半天结构上没有问题,参考网上的童鞋们,原来我太粗心了,代码里有个地方写错了:

Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第3张图片

应该改为

Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第4张图片

setContent(R.id.layout01)它的参数应该是id,而不是layout中的标示,不同于inflate方法!!

改过来就好了。对于各个tab的id,是在各自的XML中通过添加 android:id="@+id/layout01"后R文件自动生成的。例如第一个tab页对应的layout的xml如下:

并且保存后R文件自动更新。

Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第5张图片



教训:折磨了我很久的问题原来就是小小的失误。以后程序检查时一定要注意:先看函数使用,避免小miss。如果还有错就想一遍结构上是否哪些配置文件没有改好,然后还是不可以的话很可能就是程序里哪里写错了!!切记!最后的运行结果如下:各个TAB良好!!

Android使用TabHost程序异常终止could not create tab content because could not find view with id 错误_第6张图片

  

你可能感兴趣的:(Android)