Lines Matching full:bluetooth
33 Bluetooth. It demonstrates all the fundamental Bluetooth API capabilites, such as:
34 (1) Scanning for other Bluetooth devices
35 (2) Querying the local Bluetooth adapter for paired Bluetooth devices
38 (5) Transfering data over Bluetooth
65 <android>android.bluetooth.BluetoothAdapter</android>
66 <android>android.bluetooth.BluetoothDevice</android>
67 <android>android.bluetooth.BluetoothServerSocket</android>
68 <android>android.bluetooth.BluetoothSocket</android>
73 This sample shows how to implement two-way text chat over Bluetooth between two Android devices, using
74 all the fundamental Bluetooth API capabilities.
81 Bluetooth between the devices. Select "Made discoverable" in overflow menu on one device and click
82 on the Bluetooth icon on the other one, to find the device and establish the connection.
84 The sample demonstrates the following, using the [Bluetooth API][1]:
86 1. [Setting up][2] Bluetooth
87 2. [Scanning][3] for other Bluetooth devices
88 3. [Querying][4] the local Bluetooth adapter for paired Bluetooth devices
91 6. [Transfering][7] data over Bluetooth
93 [1]: http://developer.android.com/guide/topics/connectivity/bluetooth.html
94 [2]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#Permissions
95 [3]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#FindingDevices
96 [4]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#QueryingPairedDevices
97 [5]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#ConnectingDevices
98 [6]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#ConnectingAsAClient
99 [7]: http://developer.android.com/guide/topics/connectivity/bluetooth.html#ManagingAConnection