android TV广播监听usb和U盘的挂载

Android TV和Android 一样的,想要监听usb的挂载,可以监听以下的广播

监听USB插入以及移除

注意这个是usb的插入和移除,不只是U盘哦

UsbManager.ACTION_USB_DEVICE_ATTACHED
UsbManager.ACTION_USB_DEVICE_DETACHED
监听usb u盘的的挂载
  • 静态注册

     
          
          
          
          
          
          
          
      

  • 动态注册
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_MEDIA_MOUNTED);//插入
intentFilter.addAction(Intent.ACTION_MEDIA_UNMOUNTED);//拔出
intentFilter.addAction(Intent.ACTION_MEDIA_REMOVED);  //完全拔出
intentFilter.addDataScheme("file");//没有这行监听不起作用
registerReceiver(receiver, intentFilter);

你可能感兴趣的:(Android,系统,android,tv)