博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TabHost的坑
阅读量:5291 次
发布时间:2019-06-14

本文共 582 字,大约阅读时间需要 1 分钟。

问题1.  运行Activity的时候出现Your content must have a TabHost whose id attribute is ‘android.R.id.tabhost’

问题2. 运行Activity的时候出现Your TabHost must have a TabWidget whose id attribute is ‘android.R.id.tabcontent’

这是由于 TabHost   id  的规范不同造成的。我们需要把id改成如下样式:

android:id="@android:id/tabhost"

android:id="@android:id/tabs"

android:id="@android:id/tabcontent"

而在获取使用findById时也有所不同:

tabhost = l.findViewById(android.R.id.tabhost); tabwidget = l.findViewById(android.R.id.tabs); tabcontent = l.findViewById(android.R.id.tabcontent);

 

 另外:一个工程只能有一个TabHost

 

转载于:https://www.cnblogs.com/the-wang/p/9024737.html

你可能感兴趣的文章
VIO的Bundle Adjustment推导
查看>>
activemq5.14+zookeeper3.4.9实现高可用
查看>>
asp.net FileUpload控件文件格式的判断及文件大小限制
查看>>
angular(1.5.8)
查看>>
h5的video标签支持的视频格式
查看>>
大数据没那么重要
查看>>
TCP/IP详解学习笔记(3)IP协议ARP协议和RARP协议
查看>>
简单【用户输入验证】
查看>>
学android:直接用jdk来helloworld
查看>>
Access Jira RESTful API by cURL
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
Spark基础脚本入门实践3:Pair RDD开发
查看>>
HDU4405--Aeroplane chess(概率dp)
查看>>
RIA Test:try catch 对 Error #1009 (无法访问空对象引用的属性或方法)的处理
查看>>
python使用easyinstall安装xlrd、xlwt、pandas等功能模块的方法
查看>>
一个杯子的测试用例
查看>>
前端面试总结——http、html和浏览器篇
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
openCV(一)---将openCV框架导入iOS工程中
查看>>