Adobe Air - 获取设备名称(例如 EVO、DROID X..)

发布于 2024-12-09 09:10:42 字数 84 浏览 0 评论 0原文

我正在 Adob​​e Air 中使用 Actionscript,我想获取设备的型号名称,例如“EVO”或“DROID X”。有人能够做到这一点吗?谢谢。

I'm working in Actionscript in Adobe Air, and I want to get a device's model name, such as 'EVO' or 'DROID X'. Has anyone been able to do this? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(6

风苍溪 2024-12-16 09:10:43

我找到了......它在这里:android.os.Build.MODEL

I found it... It is here: android.os.Build.MODEL

无需解释 2024-12-16 09:10:42

Capability.osCapability.manufacturer 可能足以识别 iOS 设备(iPhone、iPod、iPad 及其一代)。在 Android(您指定的平台)上,这些属性太笼统了。在我的测试中,manufacturer 是“Android Linux”,os 是“Linux”加上指示确切 Linux 版本的数字。这足以让您的代码识别它正在 Android 上运行,但除此之外就没有什么了。

要访问 Android 上的设备名称,您需要编写或查找返回 android.os.Build.MODEL 的本机扩展。根据搜索,尚不存在此类扩展。

Capabilities.os and Capabilities.manufacturer are probably sufficient for identifying an iOS device (iPhone, iPod, iPad, as well as their generation). On Android, the platform you specified, these properties are too general. In my testing, manufacturer is "Android Linux" and os is "Linux" plus numbers indicating the exact Linux version. This is enough for your code to recognize it's running on Android but little else.

To access device name on Android, you'd need to write or find a Native Extension that returns android.os.Build.MODEL. Based on searching, no such extension exists yet.

指尖上得阳光 2024-12-16 09:10:42

您可以尝试 Android-Native-Device-Info 它有设备的品牌,型号、操作系统版本以及CPU、LCD 密度等。

You can try Android-Native-Device-Info it has device's brand, model, OS version and CPU, LCD Density, etc.

陌伤浅笑 2024-12-16 09:10:42

查看 功能 类 (有两个属性 os 和制造商)。我不确定设备名称是否包含在其中。

Take a look on Capabilities class (there are two properties os and manufacturer). I'm not sure if the device name is included in any of this.

海的爱人是光 2024-12-16 09:10:42

为了从 iOS 获取这些详细信息(SSID、MAC 地址和设备名称),我找到了 此 ANE 来自 as3 Gamegears。 Github 项目链接

To get these details (SSID, MAC address and device name) from iOS I found this ANE from as3 Gamegears. Github Project link.

娇柔作态 2024-12-16 09:10:42

可能回答晚了,但也许其他人仍然需要它。如果您正在寻找本机扩展来获取 Android 设备信息,您可以查看此 DeviceInfoANE。随意使用和修改!

Probably late answer but maybe others still need it. If you looking for Native Extension to get Android device info you can check this DeviceInfoANE. Feel free to use and modify!

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