Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为我认识的一家公司构建了一个 iOS 应用程序,现在我正在尝试为 android 制作相同的应用程序。仅单击 xml 文件中的“Android”按钮不起作用。我是否必须再次重写整个应用程序,或者是否有其他方法可以轻松地为 android 制作相同的应用程序?
不,您不需要再次重写整个代码。但是您应该制作一些特定于平台的代码。此外,某些控件(如ToolbarAndroid)将不可用。您可以使用Ti.Platform.osnameorgetOsname()方法检查平台,该方法将返回 osname(android/ios)。简而言之,所有其他代码也可以在 android 平台上运行。
Toolbar
Ti.Platform.osname
getOsname()