Android 知识Android精选Android

Android 版本适配问题

2019-01-09  本文已影响161人  泽毛

一、基本概念

在平时的开发中,我们经常会遇到两个问题:

那么这是为什么呢?其核心原因是没有做好版本适配工作,这和targetSdkVersion有很大的关系,所以我们需要了解一下它的基本概念。

1.1 什么是 targetSdkVersion

targetSdkVersion的属性值表示创建的Android项目使用哪个API版本。

1.2 targetSdkVersion 有什么用

每个Android版本都会对应一个API数字,例如Android 7.0对应的是API 24,当手机的Android系统版本升级的时候,会出现两种情况:

1.3 compileSDKVersion

compileSDKVersion定义应用程序编译选择哪个Android SDK版本,通常设置为最新的API版本,它的属性值不会影响Android系统运行行为,仅仅是Android编译项目时其中的一项配置,不会打包到APK中,其目的是为了 在编译的时候检查代码的错误的警告,提示开发者修改和优化

1.4 minSdkVersion

minSdkVersion定义应用支持安装的最低Android版本,这个数值有两个作用:

如果调用的API是在minSdkVersion之后才提供的,解决的方案有两种:

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    //处理逻辑。
}

二、Android 6.0 适配

2.1 在运行时请求权限

Android 6.0 (API >= 23)开始,用户开始在运行时向其授予权限,而不是在应用安装时授予。系统权限分为两类:

这篇是关于如何进行权限适配的文章 在运行时请求权限

三、Android 7.0 适配

3.1 应用间共享文件限制

Android 7.0系统上,Android框架强制执行了StrictMode API政策禁止向应用外公开file://URI,如果一项包含文件file://URI类型的的Intent离开你的应用,即调用Uri.from(file)传递文件路径给第三方应用,会出现FileUriExposedException异常,如调用系统相机拍照、裁切照片、打开APK安装界面等。

如果要 在应用间共享文件,可以发送content://URI类型的Uri,并授予URI临时访问权限,进行此授权的最简单方式是使用FileProvider类。

步骤如下:

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="com.demo.lizejun.provider"
    android:exported="false"
    android:grantUriPermissions="true">
    
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_provider_paths"/>
</provider>

exportedfalsegrantUriPermissions表示授予URI临时访问权限。

上文中的android:resource="@xml/file_provider_paths"指定了共享的目录,其配置如下:

<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path
    name="captured_media"
    path="captured_media/" />
<external-path
    name="data"
    path="Android" />
<cache-path
    name="cache"
    path="appCache" />
<external-path
    name="external"
    path="" />
</paths>
public static Intent getOpenFileIntent(Context context, DownloadResponse downloadResponse) {
        File file = new File(downloadResponse.getParentPath(), downloadResponse.getFileName());
        if (!file.exists()) {
            return null;
        }
        Intent intent = new Intent();
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setAction(Intent.ACTION_VIEW);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            Uri contentUri = FileProvider.getUriForFile(context, "com.demo.lizejun.provider", file);
            intent.setDataAndType(contentUri, downloadResponse.getMimeType());
        } else {
            intent.setDataAndType(Uri.fromFile(file), downloadResponse.getMimeType());
        }
        if (!(context instanceof Activity)) {
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        }
        return intent;
    }

3.2 系统广播删除

Android N关闭了三项系统广播:网络状态变更广播、拍照广播及录像广播。

只有在通过 动态注册 的方式才能收到网络变化的广播,在AndroidManifest.xml中静态的注册的无法收到。

四、Android 8.0 适配

4.1 通知渠道

Android 8.0中所有的通知都需要提供通知渠道,否则,所有通知在8.0系统上都不能正常显示。

    DownloadNotifier(Context context) {
        mContext = context;
        mManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            @SuppressWarnings("all") final NotificationChannel channel = new NotificationChannel(
                    CHANNEL_ID,
                    CHANNEL_NAME,
                    NotificationManager.IMPORTANCE_HIGH);
            mManager.createNotificationChannel(channel);
        }
    }

4.2 悬浮窗

8.0中新增了一种悬浮窗的窗口类型,TYPE_APPLICATION_OVERLAY,如果应用使用SYSTEM_ALERT_WINDOW权限并且尝试使用以下窗口类型之一在其它应用和系统窗口上方显示提醒窗口,都会显示在TYPE_APPLICATION_OVERLAY窗口类型的下方。

如果该应用的targetSdkVersion >= 26,则应用只能使用TYPE_APPLICATION_OVERLAY窗口类型来创建悬浮窗。

4.3 透明窗口不允许锁定屏幕旋转

之前应用中的侧滑返回方案需要将窗口设为透明,但是由于没有适配横屏,因此将其屏幕方法锁定为竖屏。

<activity
    android:name=".circle.activity.CircleListActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:screenOrientation="portrait"
    android:theme="@style/Base.Theme.CirclePage" />

窗口透明 + 固定屏幕方向 会抛出下面的异常:

Caused by: java.lang.IllegalStateException: Only fullscreen opaque activities can request orientation

解决方案有两种:

五、Android 9.0 适配

5.1 明文流量的网络请求

Android 9.0限制了明文流量的网络请求,非加密的流量请求都会被系统禁止。

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true" />
</network-security-config>
<application
      android:networkSecurityConfig="@xml/network_security_config">
</application>

参考文献

上一篇下一篇

猜你喜欢

热点阅读