Android 2.0应用程序可以在其他智能手机上运行:Android
例如,如果我们为 Android 2.0 构建一个应用程序,它是否可以在
Droid Incredible
Droid Global
Droid Pro
- < 上运行p>Droid X
三星 Galaxy 平板电脑 (http://www.samsung.com/us/mobile/galaxy-tab ) 等平板电脑
For example, if we build an application for Android 2.0, will it work on
Droid Incredible
Droid Global
Droid Pro
Droid X
Tablet PCs like Samsung Galaxy Tablet (http://www.samsung.com/us/mobile/galaxy-tab )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,是的。
只要设备满足您在 AndroidManifest 中设置的 minSdkVersion,应用程序就可以在该设备上运行。如果您还设置了目标版本,则需要确保在使用较新的 SDK 功能时仅调用可用的方法(通过反射)。
特别是对于 Galaxy Tab,您应该查看他们的网站了解详细信息。
In general, yes.
As long as the device meets the minSdkVersion you set in your AndroidManifest, the app can run on that device. If you also set a target version, you need to make sure you only call methods that are available (via reflection) when using newer SDK features.
For the Galaxy Tab specifically, you should check their site for details.