Bluetooth wird nicht direkt unterstützt, jedenfalls steht dazu in der Wiki nichts. Es sollte aber mit JNI gehen, das musst Du dann entsprechend wrappen und ein Interface implementieren. Widgets weiß ich nix.
Beispiel:
Delphi-Quellcode:
IBluetoothDeviceClass = interface(JObjectClass)
[JavaSignature('android/bluetooth/BluetoothDevice')]
IBluetoothDevice = interface(JObject)
...
end;
TBluetoothDevice = class(TJavaGenericImport<IBluetoothDeviceClass, IBluetoothDevice>)
...
end;
http://developer.android.com/referen...thAdapter.html