博客列表 >android 监听 USB 拔插广播消息

android 监听 USB 拔插广播消息

弘德誉曦的博客
弘德誉曦的博客原创
2019年10月19日 20:47:142131浏览

USBBroadcastReceiver.java

package com.example.communication;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

public class USBBroadcastReceiver extends BroadcastReceiver{
    @Override
    public void onReceive(Context context, Intent intent) {
        // TODO Auto-generated method stub
        if(intent.getAction().equals("android.hardware.usb.action.USB_STATE")){
             if (intent.getExtras().getBoolean("connected")){
                // usb 插入
                 Toast.makeText(context, "插入", Toast.LENGTH_LONG).show();
              }else{
               //   usb 拔出
                  Toast.makeText(context, "拔出", Toast.LENGTH_LONG).show();
              }
        }
    }
}
AndroidManifest.xml
<receiver android:name=".USBBroadcastReceiver"> 
    <intent-filter android:priority="800"> 
        <action android:name="android.hardware.usb.action.USB_STATE"/>
   </intent-filter>  
</receiver>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议