gpt4 book ai didi

java - Android USB 设备过滤器

转载 作者:太空宇宙 更新时间:2023-11-03 13:22:01 25 4
gpt4 key购买 nike

我正在尝试过滤某些设备,使其不显示 USB 连接对话框,据我所知,这可以通过创 build 备过滤器、指定允许的设备,然后在我的 Activity 中处理 Intent 来完成。

我遇到的问题是无论我连接什么设备它都会提示(它不限于 device_filter.xml 中的列表)。

如何将连接提示限制为 device_filter.xml 中列出的设备?

device_filter.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<usb-device vendor-id="1027" product-id="24597">
<usb-device vendor-id="1659" product-id="8963" >
</resources>

此文件包含我希望列入白名单的设备。

来自 AndroidManifest.xml:

        <activity
android:name=".Player"
android:clearTaskOnLaunch="true"
android:configChanges="orientation|keyboardHidden"
android:exported="true"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>

<meta-data
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
</activity>

在我的 Activity 中:

if (intent.getAction() != null){
if (intent.getAction().equals(UsbManager.ACTION_USB_DEVICE_ATTACHED)) {
Context context = getApplicationContext();
try
{
PackageManager pm = context.getPackageManager();
ApplicationInfo ai = pm.getApplicationInfo( "com.package.name", 0 );
if( ai != null )
{
UsbManager manager = (UsbManager) context.getSystemService( Context.USB_SERVICE );
IBinder b = ServiceManager.getService( Context.USB_SERVICE );
IUsbManager service = IUsbManager.Stub.asInterface( b );

HashMap<String, UsbDevice> deviceList = manager.getDeviceList();

Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
while( deviceIterator.hasNext() )
{
UsbDevice device = deviceIterator.next();
Log.d ("DERP", "The Vendor ID is: "+device.getVendorId());
Log.d ("DERP", "The interface is: "+device.getInterfaceCount());

//service.grantDevicePermission( device, ai.uid );
//service.setDevicePackage( device, "com.package.name");
}
}
}
catch( Exception e )
{
e.printStackTrace();
}
}
}

最佳答案

有点晚了,但是你的过滤器格式不正确:

<usb-device vendor-id="1027" product-id="24597" />

您缺少用于结束标记的斜杠 (/)。

关于java - Android USB 设备过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26473529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com