Allen
Allen

Reputation: 681

How to detect usb in android tablet which act as USB Host?

i have tried developing a sample app with the help of the code from USB Host.

public class MainActivity extends Activity {

UsbManager manager;
HashMap<String, UsbDevice> deviceList;
Button scanButton;
UsbDevice device;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    scanButton = (Button)this.findViewById(R.id.button1);
    scanButton.setOnClickListener(new OnClickListener ()
    {
        public void onClick(View v) 
        {
            checkForDevices ();
        }
    });
}

@Override
public void onResume ()
{
    super.onResume();
    checkForDevices ();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) 
{
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

protected void checkForDevices ()
{
    manager = (UsbManager) getSystemService(Context.USB_SERVICE);

    deviceList = manager.getDeviceList();
    device = deviceList.get("deviceName");
    //Collection<UsbDevice> devices = deviceList.values();

   if (device != null)
       Toast.makeText(this, "Device Found", Toast.LENGTH_LONG).show();
   else
       Toast.makeText(this, "Device NOT Found", Toast.LENGTH_LONG).show();
}
}

When i run this code with a USB device connected, i get the Toast as "Device NOT Found".

can anyone help me out to fix this?

Thank You.

Upvotes: 0

Views: 2042

Answers (1)

Calvin
Calvin

Reputation: 644

Check if your device supports host mode. try this perhaps this may help: Android USB host and hidden devices

Upvotes: 2

Related Questions