Package org.robolectric.shadows
Class ShadowUsbManager
java.lang.Object
org.robolectric.shadows.ShadowUsbManager
@Implements(value=android.hardware.usb.UsbManager.class, looseSignatures=true) public class ShadowUsbManager extends Object
Robolectric implementation of
UsbManager.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceShadowUsbManager._UsbManager_Accessor interface forUsbManager's internals.static interfaceShadowUsbManager._UsbManagerQ_Accessor interface forUsbManager's internals (Q+). -
Constructor Summary
Constructors Constructor Description ShadowUsbManager() -
Method Summary
Modifier and Type Method Description voidaddOrUpdateUsbDevice(UsbDevice usbDevice, boolean hasPermission)Adds a USB device into available USB devices map with permission value.voidaddPort(String portId)Adds a USB port with given ID to UsbManager.voidaddPort(String portId, int statusCurrentMode, int statusCurrentPowerRole, int statusCurrentDataRole, int statusSupportedRoleCombinations)Adds a USB port with given ID andUsbPortStatusparameters to UsbManager for Q+.voidclearPorts()Remove all added ports from UsbManager.protected UsbAccessory[]getAccessoryList()protected HashMap<String,UsbDevice>getDeviceList()Returns a HashMap containing all USB devices currently attached.protected ObjectgetPorts()protected ObjectgetPortStatus(Object port)ObjectgetPortStatus(String portId)Returns theUsbPortStatuscorresponding to theUsbPortwith givenportIdif present; otherwise returnsnull.protected voidgrantPermission(UsbDevice device)protected voidgrantPermission(UsbDevice device, String packageName)protected booleanhasPermission(UsbDevice device)Returns true if the caller has permission to access the device.booleanhasPermissionForPackage(UsbDevice device, String packageName)Returns true if the given package has permission to access the device.protected ParcelFileDescriptoropenAccessory(UsbAccessory accessory)Opens a file descriptor from a temporary file.voidremoveUsbDevice(UsbDevice usbDevice)Removes a USB device from available USB devices map.voidrevokePermission(UsbDevice device, String packageName)Revokes permission to a USB device granted to a package.voidsetAttachedUsbAccessory(UsbAccessory usbAccessory)Sets the currently attached Usb accessory returned in #getAccessoryList.protected voidsetPortRoles(Object port, Object powerRole, Object dataRole)
-
Constructor Details
-
ShadowUsbManager
public ShadowUsbManager()
-
-
Method Details
-
hasPermission
Returns true if the caller has permission to access the device. -
hasPermissionForPackage
Returns true if the given package has permission to access the device. -
grantPermission
-
grantPermission
@Implementation(minSdk=25) @HiddenApi protected void grantPermission(UsbDevice device, String packageName) -
revokePermission
Revokes permission to a USB device granted to a package. This method does nothing if the package doesn't have permission to access the device. -
getDeviceList
Returns a HashMap containing all USB devices currently attached. USB device name is the key for the returned HashMap. The result will be empty if no devices are attached, or if USB host mode is inactive or unsupported. -
getAccessoryList
-
setAttachedUsbAccessory
Sets the currently attached Usb accessory returned in #getAccessoryList. -
addOrUpdateUsbDevice
Adds a USB device into available USB devices map with permission value. If the USB device already exists, updates the USB device with new permission value. -
removeUsbDevice
Removes a USB device from available USB devices map. -
getPorts
-
clearPorts
public void clearPorts()Remove all added ports from UsbManager. -
addPort
Adds a USB port with given ID to UsbManager. -
addPort
public void addPort(String portId, int statusCurrentMode, int statusCurrentPowerRole, int statusCurrentDataRole, int statusSupportedRoleCombinations)Adds a USB port with given ID andUsbPortStatusparameters to UsbManager for Q+. -
getPortStatus
Returns theUsbPortStatuscorresponding to theUsbPortwith givenportIdif present; otherwise returnsnull. -
getPortStatus
-
setPortRoles
@Implementation(minSdk=23) @HiddenApi protected void setPortRoles(Object port, Object powerRole, Object dataRole) -
openAccessory
Opens a file descriptor from a temporary file.
-