您的位置:首页 > 移动开发 > Android开发

android developer tiny share-20160706

2016-07-07 14:58 549 查看
今天讲android的设备兼容,即如何一个apk能在众多的android手机上完美适配,让你的apk表现得更加flexible。介绍下“Device Compatibility”的概念,如下:

Android is designed to run on many different types of devices, from phones to tablets and televisions. As a developer, the range of devices provides a huge potential audience for your app. In order for your app to be successful on all these devices, it should
tolerate some feature variability and provide a flexible user interface that adapts to different screen configurations.

To facilitate your effort toward that goal, Android provides a dynamic app framework in which you can provide configuration-specific app resources in static files (such as different XML layouts for different screen sizes). Android then loads the appropriate
resources based on the current device configuration. So with some forethought to your app design and some additional app resources, you can publish a single application package (APK) that provides an optimized user experience on a variety of devices.

If nece
ae6d
ssary, however, you can specify your app's feature requirements and control which types of devices can install your app from Google Play Store. This page explains how you can control which devices have access to your apps, and how to prepare your apps
to make sure they reach the right audience. For more information about how you can make your app adapt to different devices, read Supporting Different Devices.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 兼容性