我希望在点击编辑按钮时回显特定行的id每行在datatable中有自己的编辑按钮我使用dataTable而不是DataTable我怎么能在dataTable中执行此操作
/**
* Check for Bluetooth.
* @return True if Bluetooth is available.
*/
public static boolean isBluetoothAvailable() {
final BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
return (bluetoothAdapter != null && bluetoothAdapter.isEnabled());
}