Android 中的组表是什么?
我正在使用 Titanium 编写一个移动项目。我有一个关于桌子的问题。我想在组中显示表格,所以我使用了:
style:Ti.UI.iPhone.TableViewStyle.GROUPED
在 Android 中怎么样,我肯定无法在 Android 中运行代码,对吗?我需要寻找一个条件来检查平台是 Android 还是 iPhone。请帮助我理解这些表格。到了安卓以后我可以用什么来代替呢?
I am writing a mobile project using Titanium. I have a question about the table. I want to show the table in group so I used:
style:Ti.UI.iPhone.TableViewStyle.GROUPED
What about in Android, I can not run the code in Android for sure right? I need to go for a condition to check either the platform is Android or iPhone. Please help me to understand about the these tables. What can I replace with when it goes to Android.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次要使用函数/方法/变量时,请仔细查看文档。
它清楚地说明了它支持哪个操作系统。在这种情况下,仅限 iOS:
http://developer. appcelerator.com/apidoc/mobile/latest/Titanium.UI.iPhone.TableViewStyle-object
您可以使用以下方式定位操作系统:
Ti.Platform.Osname
另请参阅此处:http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.Platform -模块。
Take a close look at the documentation every time you want to use functions/methods/variables.
It says clearly which OS it does support. In this case, only iOS:
http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.iPhone.TableViewStyle-object
You can target the OS with:
Ti.Platform.Osname
Also look here: http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.Platform-module.