i'm try to view all usb are attached at my andorid system:
`// ricerco la textbox TextView display = FindViewById (Resource.Id.textView1); display.Text = "Hai premuto il tasto"; display.Text = display.Text + "Inizio a cercare!";
//Voglio vedere una lista di tutti i dispositivi attualmente collegati
UsbManager manager = (UsbManager)GetSystemService (Context.UsbService);
try {
if (manager.DeviceList.Count != 0)
{
foreach (UsbDevice dispositivi in manager.DeviceList.Values) {
display.Text = display.Text + dispositivi.DeviceName;
}
}
else
{
display.Text = display.Text + "-Attenzione non vedo dispositivi";
}
} catch (Exception ex) {
display.Text = ex.ToString();
}
`
but i dont see anything device attached at my android.
Sorry for my bad english.