设备兼容

地址:https://developer.android.com/guide/practices/compatibility.html

我们可以限制应用在设备的可见,通过以下特性:

1、 设备功能

Android针对每一个硬件功能或软件功能定义了功能的id,如果当设备不支持时你要阻止安装应用,要在manifest文件中定义<uses-feature>元素,如果你应用不是主要请求这个功能的需要设置request为false(默认都为false)。然后你可以动态判断当前设备是否有该功能通过hasSystemFeature()方法

PackageManager pm = getPackageManager();
if (!pm.hasSystemFeature(PackageManager.FEATURE_SENSOR_COMPASS)) {
   
// This device does not have a compass, turn off the compass feature
    disableCompassFeature
();
}

2、平台版本

3、屏幕配置

你可能感兴趣的:(设备兼容)