diff --git a/core/java/android/bluetooth/package.html b/core/java/android/bluetooth/package.html index 5ff240c706ca1..9ac42dc58352e 100644 --- a/core/java/android/bluetooth/package.html +++ b/core/java/android/bluetooth/package.html @@ -1,7 +1,11 @@ -Provides classes that manage Bluetooth functionality, such as scanning for -devices, connecting with devices, and managing data transfer between devices. +

Provides classes that manage Bluetooth functionality, such as scanning for +devices, connecting with devices, and managing data transfer between devices.

+ +

For a complete guide to using the Bluetooth APIs, see the Bluetooth developer guide.

+{@more}

The Bluetooth APIs let applications:

- +

In this document

  1. The Basics
  2. @@ -32,7 +32,7 @@ other devices
  3. Managing a Connection
- +

Key classes

  1. {@link android.bluetooth.BluetoothAdapter}
  2. @@ -289,7 +289,7 @@ is discussed below.

    of paired devices to see if the desired device is already known. To do so, call {@link android.bluetooth.BluetoothAdapter#getBondedDevices()}. This will return a Set of {@link android.bluetooth.BluetoothDevice}s representing -paired devices. For example, you can query all paired devices and then add then +paired devices. For example, you can query all paired devices and then show the name of each device to the user, using an ArrayAdapter:

     Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();