From d8341132473d6ebe278b16b55360a7bb631288d3 Mon Sep 17 00:00:00 2001 From: Robert Ly Date: Wed, 4 May 2011 16:41:40 -0700 Subject: doc change: a misplaced link removed Change-Id: If8b12e5409b44a095593b126a18fa6c0d572cc59 --- docs/html/guide/topics/usb/accessory.jd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/html/guide/topics/usb/accessory.jd b/docs/html/guide/topics/usb/accessory.jd index 7638e30..b0f4881 100644 --- a/docs/html/guide/topics/usb/accessory.jd +++ b/docs/html/guide/topics/usb/accessory.jd @@ -50,9 +50,9 @@ page.title=USB Accessory -

USB accessory mode allows users to connect +

USB accessory mode allows users to connect USB host hardware specifically designed for Android-powered devices. The accessories must adhere - to the Android accessory protocol outlined in Android Accessory Development Kit documentation. This allows Android-powered devices that cannot act as a USB host to still interact with USB hardware. When an Android-powered device is in USB accessory mode, the attached Android USB @@ -445,7 +445,7 @@ BroadcastReceiver mUsbReceiver = new BroadcastReceiver() { public void onReceive(Context context, Intent intent) { String action = intent.getAction(); - if (UsbManager.ACTION_USB_ACCESSORY_DETACHED.equals(action)) { + if (UsbManager.ACTION_USB_ACCESSORY_DETACHED.equals(action)) { UsbAccessory accessory = (UsbAccessory)intent.getParcelableExtra(UsbManager.EXTRA_ACCESSORY); if (accessory != null) { // call your method that cleans up and closes communication with the accessory -- cgit v1.1