Android适配Android 9

一、网络适配

从Android6.0开始google就建议使用https,不过你可以不鸟他继续使用http,但是从Android 9开始你就不得不鸟他了,因为http访问不了了。

1. 在res中新建xml文件夹
2.新建xml文件network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true"/>
<domain-config cleartextTrafficPermitted="true">
    <!--IP01-->
    <domain includeSubdomains="true">xx.xx.xx.xxx</domain>
    <!--IP02-->
    <domain includeSubdomains="true">xx.xx.xxx.xx</domain>
    <!--IP03-->
    <domain includeSubdomains="true">xx.xx.xx.xx</domain>
    <!--bugly-->
    <domain includeSubdomains="true">android.bugly.qq.com</domain>
</domain-config>
</network-security-config>
3.修改AndroidManifest.xml
    <application
        ...
        android:networkSecurityConfig="@xml/network_security_config"
        ...
        >

二、权限适配

Android9之前在AndroidManifest.xml配置权限就可以了,但是Android 9开始只配置不行了,需要动态询问用户同不同意,用户不同意你配置10遍都没用。

1.新建java class工具类PermissionHelper
package com.example.jizhigang.crm_android_j.utils;

import android.Manifest;
import android.app.Activity;
import android.content.Context;
import android.content.pm.PackageManager;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.util.Log;

import com.example.jizhigang.crm_android_j.base.activity.BaseActivity;

import java.util.ArrayList;
import java.util.List;

public class PermissionHelper extends BaseActivity {


    Context _context;
    Activity _activity;

    public PermissionHelper( Context _context, Activity _activity ) {
        this._context = _context;
        this._activity = _activity;
    }

    private List<String> unPermissionList = new ArrayList<String>(); //申请未得到授权的权限列表
    private String[] permissionList = new String[]{    //申请的权限列表
            Manifest.permission.INTERNET,
            Manifest.permission.READ_CALL_LOG,
            Manifest.permission.WRITE_CALL_LOG,
            Manifest.permission.WRITE_EXTERNAL_STORAGE,
            Manifest.permission.RECORD_AUDIO,
            Manifest.permission.READ_PHONE_STATE,
            Manifest.permission.CALL_PHONE,
            Manifest.permission.CAMERA,
            Manifest.permission.FOREGROUND_SERVICE,
            Manifest.permission.READ_CALENDAR, //读写日历的权限
            Manifest.permission.WRITE_CALENDAR
    };


    //权限判断和申请
    public void checkPermission() {
        unPermissionList.clear();//清空申请的没有通过的权限
        //逐个判断是否还有未通过的权限
        for (int i = 0; i < permissionList.length; i++) {
            if (ContextCompat.checkSelfPermission(_context, permissionList[i]) !=
                    PackageManager.PERMISSION_GRANTED) {
                unPermissionList.add(permissionList[i]);//添加还未授予的权限到unPermissionList中
            }
        }

        //有权限没有通过,需要申请
        if (unPermissionList.size() > 0) {
            ActivityCompat.requestPermissions( _activity,permissionList, 100);
            Log.i("TAG", "check 有权限未通过");
        } else {
            //权限已经都通过了,可以将程序继续打开了
            Log.i("TAG", "check 权限都已经申请通过");
        }
    }


    @Override
    public void onRequestPermissionsResult( int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults ) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    }

}
2.使用方法

在BaseActivity.java中调用

    @Override
    protected void onCreate( Bundle savedInstanceState ) {
        super.onCreate(savedInstanceState);

        //检查权限
        PermissionHelper permissionHelper = new PermissionHelper(this, BaseActivity.this);
        permissionHelper.checkPermission();
    }

三、麦克风

你在配置麦克风权限以后可以正常使用麦克风,但是Android 9为了进一步保护用户隐私规定在app休眠之后就不可以使用麦克风了,我在开发中遇到了这个问题,app退到后台的50秒之后录音文件没有了内容,下面提供解决方法

1、新建service文件
public class NotificationService extends Service {
    private static final String TAG = "NotificationService";
    private NotificationManager notificationManager;
    //通知的唯一标识号。
    private int NOTIFICATION = R.string.notification_live_start;


    @Override
    public void onCreate() {
        super.onCreate();
        notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
        showNotification();
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return super.onStartCommand(intent, flags, startId);
    }

    private void showNotification(){
        // PendingIntent如果用户选择此通知,则启动我们的活动
        PendingIntent pendingIntent = PendingIntent.getActivity(this,0,new Intent(this,NotificationService.class),0);


        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O){
            String channelId = createNotificationChannel("my_service","My Background Service");
            //设置通知面板中显示的视图的信息。
            Notification notification =new Notification.Builder(this,channelId)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setTicker("正在通话")
                    .setContentTitle(getText(R.string.notification_live_start))
                    .setContentTitle("正在运行")
                    .setContentIntent(pendingIntent)
                    .build();

            Log.d(TAG,"显示通知");
            //发送通知
            notificationManager.notify(NOTIFICATION,notification);
            startForeground(R.string.notification_live_start,notification);
        }else {
            //设置通知面板中显示的视图的信息。
            Notification notification =new Notification.Builder(this).setSmallIcon(R.mipmap.ic_launcher).setTicker("正在通话")
                    .setContentTitle(getText(R.string.notification_live_start))
                    .setContentTitle("正在运行")
                    .setContentIntent(pendingIntent)
                    .build();

            Log.d(TAG,"显示通知");
            //发送通知
            notificationManager.notify(NOTIFICATION,notification);
            startForeground(R.string.notification_live_start,notification);
        }




    }

    @RequiresApi(api = Build.VERSION_CODES.O)
    private String createNotificationChannel( String channelId, String channelName){
        NotificationChannel channel = new NotificationChannel(channelId,channelName,NotificationManager.IMPORTANCE_NONE);
        channel.setLightColor(Color.BLUE);
        channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
        NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
        nm.createNotificationChannel(channel);
        return channelId;
    }

    @RequiresApi(api = Build.VERSION_CODES.N)
    @Override
    public void onDestroy() {
        super.onDestroy();
        notificationManager.cancel(NOTIFICATION);
    }
}
2、使用方法

开始录音时启动

            //适配Android 9 app退到后台休眠时不能调用麦克风的问题
            Intent intent = new Intent(mContext,NotificationService.class);
            mContext.startService(intent);

录音结束时关闭

            //适配Android 9 app退到后台休眠时不能调用麦克风的问题
            Intent intent = new Intent(mContext,NotificationService.class);
            mContext.stopService(intent);

参考文章
mp3Recorder
https://github.com/GavinCT/AndroidMP3Recorder
Bad notification for startForeground错误解决
//www.greatytc.com/p/8baa62c5bfc2
android9.0 程序置入后台或休眠麦克风不工作解决方法
https://blog.csdn.net/Crazy9599/article/details/89842280

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,194评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,058评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,780评论 0 346
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,388评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,430评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,764评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,907评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,679评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,122评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,459评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,605评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,270评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,867评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,734评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,961评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,297评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,472评论 2 348

推荐阅读更多精彩内容