Android適配Android 9

一、網(wǎng)絡(luò)適配

從Android6.0開始google就建議使用https,不過你可以不鳥他繼續(xù)使用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"
        ...
        >

二跺撼、權(quán)限適配

Android9之前在AndroidManifest.xml配置權(quán)限就可以了,但是Android 9開始只配置不行了讨彼,需要動態(tài)詢問用戶同不同意歉井,用戶不同意你配置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>(); //申請未得到授權(quán)的權(quán)限列表
    private String[] permissionList = new String[]{    //申請的權(quán)限列表
            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, //讀寫日歷的權(quán)限
            Manifest.permission.WRITE_CALENDAR
    };


    //權(quán)限判斷和申請
    public void checkPermission() {
        unPermissionList.clear();//清空申請的沒有通過的權(quán)限
        //逐個判斷是否還有未通過的權(quán)限
        for (int i = 0; i < permissionList.length; i++) {
            if (ContextCompat.checkSelfPermission(_context, permissionList[i]) !=
                    PackageManager.PERMISSION_GRANTED) {
                unPermissionList.add(permissionList[i]);//添加還未授予的權(quán)限到unPermissionList中
            }
        }

        //有權(quán)限沒有通過哈误,需要申請
        if (unPermissionList.size() > 0) {
            ActivityCompat.requestPermissions( _activity,permissionList, 100);
            Log.i("TAG", "check 有權(quán)限未通過");
        } else {
            //權(quán)限已經(jīng)都通過了哩至,可以將程序繼續(xù)打開了
            Log.i("TAG", "check 權(quán)限都已經(jīng)申請通過");
        }
    }


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

}
2.使用方法

在BaseActivity.java中調(diào)用

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

        //檢查權(quán)限
        PermissionHelper permissionHelper = new PermissionHelper(this, BaseActivity.this);
        permissionHelper.checkPermission();
    }

三躏嚎、麥克風

你在配置麥克風權(quán)限以后可以正常使用麥克風,但是Android 9為了進一步保護用戶隱私規(guī)定在app休眠之后就不可以使用麥克風了菩貌,我在開發(fā)中遇到了這個問題卢佣,app退到后臺的50秒之后錄音文件沒有了內(nèi)容,下面提供解決方法

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");
            //設(shè)置通知面板中顯示的視圖的信息仇参。
            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,"顯示通知");
            //發(fā)送通知
            notificationManager.notify(NOTIFICATION,notification);
            startForeground(R.string.notification_live_start,notification);
        }else {
            //設(shè)置通知面板中顯示的視圖的信息嘹叫。
            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,"顯示通知");
            //發(fā)送通知
            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退到后臺休眠時不能調(diào)用麥克風的問題
            Intent intent = new Intent(mContext,NotificationService.class);
            mContext.startService(intent);

錄音結(jié)束時關(guān)閉

            //適配Android 9 app退到后臺休眠時不能調(diào)用麥克風的問題
            Intent intent = new Intent(mContext,NotificationService.class);
            mContext.stopService(intent);

參考文章
mp3Recorder
https://github.com/GavinCT/AndroidMP3Recorder
Bad notification for startForeground錯誤解決
http://www.reibang.com/p/8baa62c5bfc2
android9.0 程序置入后臺或休眠麥克風不工作解決方法
https://blog.csdn.net/Crazy9599/article/details/89842280

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末诈乒,一起剝皮案震驚了整個濱河市待笑,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌抓谴,老刑警劉巖暮蹂,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異癌压,居然都是意外死亡仰泻,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進店門滩届,熙熙樓的掌柜王于貴愁眉苦臉地迎上來集侯,“玉大人,你說我怎么就攤上這事帜消√耐鳎” “怎么了?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵泡挺,是天一觀的道長辈讶。 經(jīng)常有香客問我,道長娄猫,這世上最難降的妖魔是什么贱除? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮媳溺,結(jié)果婚禮上月幌,老公的妹妹穿的比我還像新娘。我一直安慰自己悬蔽,他們只是感情好扯躺,可當我...
    茶點故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般录语。 火紅的嫁衣襯著肌膚如雪轴术。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天钦无,我揣著相機與錄音逗栽,去河邊找鬼。 笑死失暂,一個胖子當著我的面吹牛彼宠,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播弟塞,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼凭峡,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了决记?” 一聲冷哼從身側(cè)響起摧冀,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎系宫,沒想到半個月后索昂,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡扩借,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年椒惨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片潮罪。...
    茶點故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡康谆,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出嫉到,到底是詐尸還是另有隱情沃暗,我是刑警寧澤,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布何恶,位于F島的核電站孽锥,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏导而。R本人自食惡果不足惜忱叭,卻給世界環(huán)境...
    茶點故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一隔崎、第九天 我趴在偏房一處隱蔽的房頂上張望今艺。 院中可真熱鬧,春花似錦爵卒、人聲如沸虚缎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽实牡。三九已至陌僵,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間创坞,已是汗流浹背碗短。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留题涨,地道東北人偎谁。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像纲堵,于是被迫代替她去往敵國和親巡雨。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,562評論 2 349

推薦閱讀更多精彩內(nèi)容