支持Java Android 的手机吗?
支持 Java Android 的手机有哪些?
有没有支持该技术的诺基亚手机?
如果我们想部署 Java Android 应用程序,移动设备应该包含什么(框架、插件等)?
What are mobile phones supporting Java Android?
Is there any Nokia phone supporting this technology?
What should the mobile contain (a framework, a plugin.. etc) if we want to deploy a Java Android Application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android 可以部署到许多具有定制操作系统版本的设备;任何人都可以构建Android。它不限于特定的手机制造商,您可能需要咨询制造商以获取已部署设备的官方列表。
设备不需要包含任何内容(除了适当的 Andrdoid 目标版本)来部署应用程序。
一个重要的注意事项是应用程序不在 JVM 中运行,代码仅用 Java 编写,然后在编译时转换为 Dalvik 字节码(Android 在 Dalvik 虚拟机上运行)。由于代码是用 Java 编写的,因此您可以广泛使用现有的库并在您的应用程序中使用它们。
Android can be deployed to many devices with custom builds of the OS; anyone can build Android . It is not limited to particular handset makers and you might want to consult the makers for official lists of deployed devices.
There is nothing the device needs to contain (other then an appropriate targeted version of Andrdoid) to deploy an application.
One important note is that the application IS NOT run in the JVM, the code is only written in Java and then converted to Dalvik bytecode when compiling (Android runs on the Dalvik Virtual Machine). Since the code is written in Java though you can make extensive use of existing libraries and use them in your applications.
我认为大多数运行 Android 的手机都应该支持 Android 应用程序。
但是,恕我直言,很难编制一份这些手机的列表。但请放心,数量很多。有人列了一个清单! 是的,很多。一些快速的谷歌搜索显示,诺基亚似乎不喜欢 Android,所以我认为没有一款搭载 Android 的诺基亚手机。
框架:带有 ADT 插件的 Eclipse Galileo
我的建议:
彻底阅读这个网站! http://developer.android.com/index.html
它回答了您的所有问题。
I think most phones that run Android should support Android applications.
However, IMHO one would be hard pressed to compile a list of those phone.But rest assured, it's a lot.Someone DID make a list! And yep, it's a lot.Some quick Googling reveal that Nokia seems to not like Android so I would assume there is not a Nokia phone with Android.
Framework: Eclipse Galileo with the ADT plugin
My advice:
read this site inside and out! http://developer.android.com/index.html
It answers all your questions.