IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android 9.0 Mtk 平台 如何切换使用的USB Audio 设备 -> 正文阅读

[移动开发]Android 9.0 Mtk 平台 如何切换使用的USB Audio 设备

当我们使用usb外设设备的时候,我们需要简单的了解下Android为我们提供的API。关于常用的系统api都在android.hardware.usb包下,主要以下几个类:UsbManager?、?UsbDevice?、?UsbDeviceConnection?,?UsbEndpoint?,?UsbInterface?UsbRequest?,?UsbConstants。

UsbManager常用方法
getDeviceList()获得usb设备的列表,存储在一个HashMap中
hasPermission(UsbDevice device)判断当前应用程序是否具有接入usb设备的权限
openDevice(UsbDevice device)打开USB设备,以便向此USB设备发送和接受数据,返回一个关于此USB设备的连接
UsbDevice常用方法
getDeviceClass()返回此USB设备的类别,用一个整型来表示
getDeviceId()返回唯一标识此设备的ID号,也用一个整型来表示
getDeviceName()返回此设备的名称,用一个字符串来表示
getDeviceProtocol()返回此设备的协议类别,用一个整型来表示
getDeviceSubclass()返回此设备的子类别,用一个整型来表示
getVendorId()返回设备的vid,也就是生产商ID
getProductId()返回设备的pid,也就是产品ID
getInterfaceCount()返回此设备的接口数量
getInterface(int index)得到此设备的一个接口,返回一个UsbInterface

关于api的方法作用,这里也就不在一一赘述,源码里面都有注释,推荐一个在线访问源码的网站

http://androidxref.com/

我们整体的思路是在UsbService静态注册一个广播,然后去调用UsbAlsaManager里面的usb audio设备切换的方法。

了解了以上,我主要修改是在如下位置

frameworks\base\services\usb\java\com\android\server\usb\UsbAlsaManager.java

UsbAlsaManager.java主要是用来管理USB audio 设备以及?MIDI设备

   public void selectDevice(int productId,int vendorId,UsbDevice usbDevice){
		Slog.d(TAG, "selectAlsaDevice "+productId+";"+vendorId);
		if(mAlsaDevices == null || mAlsaDevices.size()==0){
			 return ;
		}
		Slog.d(TAG, "mAlsaDevices != null"+usbDevice.getDeviceName());
		for (UsbAlsaDevice usbAlsaDevice : mAlsaDevices) {//mAlsaDevices是系统用来存储usb audio设备的一个map
		Slog.d(TAG, "usbAlsaDevice "+usbAlsaDevice.getDeviceAddress());
		   if(usbDevice.getDeviceName().equals(usbAlsaDevice.getDeviceAddress())){
			if (mSelectedDevice != null) {
				 deselectAlsaDevice();
			}	
			mSelectedDevice = usbAlsaDevice;
			usbAlsaDevice.start();//去做切换的核心方法
			Slog.d(TAG,"usbAlsaDevice:"+usbAlsaDevice.toString());
			return ;
		   }
		}	
   }

广播发送的代码:

    public void switchAudio() {
        Log.i(TAG, "====switchAudio====");
		if (usbDeviceList == null) {
            usbDeviceList = new ArrayList<>();
        }
        usbDeviceList.clear();
        UsbManager mUsbManager = (UsbManager) mContext.getSystemService(Context.USB_SERVICE);
        Map<String, UsbDevice> mDeviceMap = mUsbManager.getDeviceList();//获取系统内的所有usb设备
        for (Map.Entry<String, UsbDevice> entry : mDeviceMap.entrySet()) {
            UsbDevice usbDevice = entry.getValue();
            if (isAudioMicDevice(usbDevice)) {// 判断是不是usb audio设备
                usbDeviceList.add(usbDevice);
            }
        }
		for(int i=0;i<usbDeviceList.size();i++) {
            UsbDevice usbDevice = usbDeviceList.get(i);
            if (usbDevice.getVendorId()==0x00&&usbDevice.getProductId()==0x00){//选择你要去切换的设备
				Intent intent = new Intent("usbdevicemanager_usb_select_device");
				intent.putExtra(UsbManager.EXTRA_DEVICE, usbDevice);
				mContext.sendBroadcast(intent);
				break;
            }               
        }
    }

	private boolean isAudioMicDevice(UsbDevice usbDevice) {
        boolean isAudio = false;
        int intefaceCount = usbDevice.getInterfaceCount();
        for (int ninterIndex = 0; !isAudio && ninterIndex < intefaceCount; ninterIndex++)                 
        {
            UsbInterface ntrface = usbDevice.getInterface(ninterIndex);
            if (ntrface.getInterfaceClass() == UsbConstants.USB_CLASS_AUDIO) {
                isAudio = true;
            }
        }
        return isAudio;
    }

?

广播接受的代码:

frameworks\base\services\usb\java\com\android\server\usb\UsbService.java

BroadcastReceiver receiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                final String action = intent.getAction();
                if (DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED
                        .equals(action)) {
                    if (mDeviceManager != null) {
                        mDeviceManager.updateUserRestrictions();
                    }
                }else if(("usbdevicemanager_usb_select_device").equals(action)){
					UsbDevice device = intent.<UsbDevice>getParcelableExtra(UsbManager.EXTRA_DEVICE);
					if(device == null){
						return;
					}
					Slog.w(TAG, "select_device"+device.getProductId()+";"+device.getVendorId());
					if(mAlsaManager != null){
						Slog.w(TAG,"mAlsaManager != null");
						mAlsaManager.selectDevice(device.getProductId(),device.getVendorId(),device);
					}	
				}
            }
        };

        final IntentFilter filter = new IntentFilter();
        filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
		filter.addAction("usbdevicemanager_usb_select_device");
        filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
        mContext.registerReceiver(receiver, filter, null, null);

这样一来就可以做到去切换usb audio设备了。

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-17 12:06:28  更:2021-10-17 12:08:06 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 22:36:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码