Android Usb设备的监听(Dev)外设端口的判定以及耳机的插拔
作者:ChaoLi_Chen 时间:2022-12-07 19:23:44
最近在公司用到外设,需要判断接入的外设的VendorId和ProductId,然后给大家说一下自己的学习成果把 ,首先我门可以通过android.hardware.usb.action.USB_STATE
监听自己的Usb连接的设备,只针对Usb设备。而想要监听外部设备的时候却需要另外的两个广播进行监听"android.hardware.usb.action.USB_DEVICE_ATTACHED"
和"android.hardware.usb.action.USB_DEVICE_DETACHED"
。要是想对耳机或者耳机的状态进行监听的时候需要的广播是"android.intent.action.HEADSET_PLUG"
通过
int inttype=intent.getIntExtra("microphone",0)来获取耳机是否有麦克风。inttype==0表示没有耳机inttype==1表示有耳机
我个人的建议就是将一部分代码(根据个人情况而定)放到服务里面,或者是Application里面。
import com.example.usbusb.utils.ToastUtils;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends Activity {
//耳机的广播
public static final String TAGLISTEN = "android.intent.action.HEADSET_PLUG";
//usb线的广播
private final static String TAGUSB = "android.hardware.usb.action.USB_STATE";
//外设的广播
public static final String TAGIN = "android.hardware.usb.action.USB_DEVICE_ATTACHED";
public static final String TAGOUT = "android.hardware.usb.action.USB_DEVICE_DETACHED";
private boolean BOOLEAN=false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//赛选器
IntentFilter filter = new IntentFilter();
//筛选的条件
filter.addAction(TAGIN);
filter.addAction(TAGOUT);
filter.addAction(TAGUSB);
//注册广播 动态注册
registerReceiver(receiver, filter);
}
/**
* 创建广播的类
*/
BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//判断外设
if (action.equals(TAGIN)) {
ToastUtils.shwotoast(context, "外设已经连接");
//Toast.makeText(context, "外设已经连接", Toast.LENGTH_SHORT).show();
}
if (action.equals(TAGOUT)) {
if (BOOLEAN) {
ToastUtils.shwotoast(context, "外设已经移除");
//Toast.makeText(context, "外设已经移除", Toast.LENGTH_SHORT).show();
}
}
//判断存储usb
if (action.equals(TAGUSB)) {
boolean connected = intent.getExtras().getBoolean("connected");
if (connected) {
ToastUtils.shwotoast(context, "USB 已经连接");
//Toast.makeText(MainActivity.this, "USB 已经连接",Toast.LENGTH_SHORT).show();
} else {
if (BOOLEAN) {
ToastUtils.shwotoast(context, "USB 断开");
//Toast.makeText(MainActivity.this, "USB 断开",Toast.LENGTH_SHORT).show();
}
}
}
//判断耳机
if (action.equals(TAGLISTEN)) {
int intExtra = intent.getIntExtra("state", 0);
// state --- 0代表拔出,1代表插入
// name--- 字符串,代表headset的类型。
// microphone -- 1代表这个headset有麦克风,0则没有
// int i=intent.getIntExtra("",0);
if (intExtra == 0) {
if (BOOLEAN) {
ToastUtils.shwotoast(context,"拔出耳机");
//Toast.makeText(context, "拔出耳机", Toast.LENGTH_SHORT).show();
}
}
if (intExtra == 1) {
ToastUtils.shwotoast(context, "耳机插入");
//Toast.makeText(context, "耳机插入", Toast.LENGTH_SHORT).show();
int intType = intent.getIntExtra("microphone", 0);
if (intType == 0) {
ToastUtils.shwotoast(context, "没有麦克风");
//Toast.makeText(context, "没有麦克风" + intType,Toast.LENGTH_SHORT).show();
}
if (intType == 1) {
ToastUtils.shwotoast(context,"有话筒" );
//Toast.makeText(context, "有话筒" + intType,Toast.LENGTH_SHORT).show();
}
}
}
BOOLEAN=true;
}
};
/**
* 注销广播
*/
protected void onDestroy() {
unregisterReceiver(receiver);
};
}
ToastUtils工具类
import android.content.Context;
import android.widget.Toast;
public class ToastUtils {
public static Toast toast=null;
private ToastUtils toastUtils=new ToastUtils();
private ToastUtils(){}
public static void shwotoast(Context context,String msg){
if (toast==null) {
toast=Toast.makeText(context, msg, Toast.LENGTH_SHORT);
}else {
if (toast!=null) {
toast.setText(msg);
}
}
toast.show();
}
}
下面的一个就是获取每一个Id的端口号通过在Usb的广播里面调用这个方法判断是否是自己的设备,这样就可完成自己想要的操作了(注意当看到设备的ID是以0x开头的是十六位的 然后转化成十进制的数就能看到自己的东西了)
import java.util.HashMap;
import android.annotation.SuppressLint;
import android.content.Context;
import android.hardware.usb.UsbDevice;
import android.hardware.usb.UsbManager;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
public class MainActivity extends ActionBarActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
UsbManager usbManager = (UsbManager) getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> map = usbManager.getDeviceList();
System.out.println("......................befor....................................");
for(UsbDevice device : map.values()){
System.out.println(".......one..........dName: " + device.getDeviceName());
System.out.println(".......tow.........vid: " + device.getVendorId() + "\t pid: " + device.getProductId());
}
System.out.println("........................after..................................");
}
结果我们都能看到有两个设备
来源:https://blog.csdn.net/ChaoLi_Chen/article/details/51313616
标签:android,usb,设备,外设,监听
0
投稿
猜你喜欢
Java4Android开发教程(三)java基本概念
2021-09-27 20:41:44
C# 中使用正则表达式匹配字符的含义
2023-11-19 02:59:38
IDEA中的maven没有dependencies解决方案
2021-08-01 11:58:50
Springboot整合redis实现发布订阅功能介绍步骤
2021-11-23 16:42:26
常用Hash算法(C语言的简单实现)
2021-09-10 05:23:47
Android性能优化大图治理示例详解
2023-12-13 00:18:01
基于springboot+vue实现垃圾分类管理系统
2023-04-17 08:39:11
一文搞懂SpringBoot如何利用@Async实现异步调用
2022-02-06 12:39:27
SpringCloud微服务之Hystrix组件实现服务熔断的方法
2021-12-04 16:30:45
Java动态 代理的应用详解
2023-11-25 08:15:24
Java 实战项目锤炼之校园宿舍管理系统的实现流程
2023-10-15 07:00:58
springMVC前台传数组类型,后台用list类型接收实例代码
2022-12-25 16:39:40
SSM Mapper文件查询出返回数据查不到个别字段的问题
2023-10-17 01:02:08
JVM完全解读之GC日志记录分析
2022-09-22 12:43:08
.net实现序列化与反序列化实例解析
2022-08-05 06:42:08
Android通过json向MySQL中读写数据的方法详解【写入篇】
2022-07-20 19:12:39
Android内置SQLite的使用详细介绍
2021-10-24 11:44:17
Spring Boot使用Allatori代码混淆的方法
2023-11-24 16:34:55
Java/Web调用Hadoop进行MapReduce示例代码
2023-09-01 05:05:50
一起聊聊Java中13种锁的实现方式
2022-11-23 15:26:00