Most visited

Recently visited

Added in API level 12

MtpDeviceInfo

public class MtpDeviceInfo
extends Object

java.lang.Object
   ↳ android.mtp.MtpDeviceInfo


This class encapsulates information about an MTP device. This corresponds to the DeviceInfo Dataset described in section 5.1.1 of the MTP specification.

Summary

Public methods

final int[] getEventsSupported()

Returns event code supported by the device.

final String getManufacturer()

Returns the manufacturer's name for the MTP device

final String getModel()

Returns the model name for the MTP device

final int[] getOperationsSupported()

Returns operation code supported by the device.

final String getSerialNumber()

Returns the unique serial number for the MTP device

final String getVersion()

Returns the version string the MTP device

boolean isEventSupported(int code)

Returns if the given event is supported by the device or not.

boolean isOperationSupported(int code)

Returns if the given operation is supported by the device or not.

Inherited methods

From class java.lang.Object

Public methods

getManufacturer

Added in API level 12
String getManufacturer ()

Returns the manufacturer's name for the MTP device

Returns
String the manufacturer name

getModel

Added in API level 12
String getModel ()

Returns the model name for the MTP device

Returns
String the model name

getSerialNumber

Added in API level 12
String getSerialNumber ()

Returns the unique serial number for the MTP device

Returns
String the serial number

getVersion

Added in API level 12
String getVersion ()

Returns the version string the MTP device

Returns
String the device version

isEventSupported

Added in API level 24
boolean isEventSupported (int code)

Returns if the given event is supported by the device or not.

Parameters
code int: Event code.
Returns
boolean If the given event is supported by the device or not.

isOperationSupported

Added in API level 24
boolean isOperationSupported (int code)

Returns if the given operation is supported by the device or not.

Parameters
code int: Operation code.
Returns
boolean If the given operation is supported by the device or not.

Hooray!