Android 中的组表是什么?

发布于 2024-12-23 00:41:05 字数 238 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青朷 2024-12-30 00:41:05

每次要使用函数/方法/变量时,请仔细查看文档。

它清楚地说明了它支持哪个操作系统。在这种情况下,仅限 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 -模块

操作系统的简称。例如,在 iPhone 上,将
返回iphone,iPad将返回ipad,Android将返回android并且
移动网络将返回 mobileweb

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.

the shortname of the operating system. for example, on an iPhone, will
return iphone, iPad will return ipad, Android will return android and
Mobile Web will return mobileweb

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文