デバイス リストを ArrayAdapter に追加し、デバイス リストが Bluetooth スキャンから取得される ListView に表示します。スキャンされたデバイスは最初に arrayadapter に追加されます。その後、リストビューに追加して、スキャンされたBluetoothデバイスのリストをユーザーに表示します。
しかし、デバイスをスキャンしているときに、重複したデバイスが追加されているとします。デバイスA
がスキャンされると、表示されている device の 2 倍または 3 倍になりますA
。スキャンしたデバイスのリストを 1 回だけ表示したい。それを達成する方法。質問があいまいな場合は申し訳ありません。
次のコードは、新しいデバイスを照会し、それを arrayadapter に追加するためのものです。
if (BluetoothDevice.ACTION_FOUND.equals(action))
{
// Get the BluetoothDevice object from the Intent
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// If it's already paired, skip it, because it's been listed already
if (device.getBondState() != BluetoothDevice.BOND_BONDED)
{
mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());
}
// When discovery is finished, change the Activity title
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
setProgressBarIndeterminateVisibility(false);
setTitle(R.string.select_device);
if (mNewDevicesArrayAdapter.getCount() == 0) {
String noDevices = getResources().getText(R.string.none_found).toString();
mNewDevicesArrayAdapter.add(noDevices);
}
}
バージョン 4.1 の Android の例のプログラムで、例の名前はBluetooth Chat
です。アクティビティはどこにありますかDeviceListActivityScan.java
。