web-dev-qa-db-ja.com

Androidで範囲内の使用可能なBluetoothデバイスをスキャンする方法は?

Google Android 2.1。

物事は、それらのデバイスのリストだけでなく、検出されたデバイスごとに一意のIDが必要であり、信号がどの程度「良好」に受信されているかを示すインジケーターが必要です(Android.wifi.ScanResultの「レベル」のように) )... それ、どうやったら出来るの?

19
xenonite

以下のコードをチェックしてください:

検索を開始しています

mBluetoothAdapter.startDiscovery(); 
mReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();

    //Finding devices                 
    if (BluetoothDevice.ACTION_FOUND.equals(action)) 
    {
        // Get the BluetoothDevice object from the Intent
        BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
        // Add the name and address to an array adapter to show in a ListView
       mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
    }
  }
};

IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND); 
registerReceiver(mReceiver, filter);
41
Deepthi

メソッドbluetoothScanningを呼び出します。コンテキストが必要です

void bluetoothScanning(){

    IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
    context.registerReceiver(mReceiver, filter);
    final BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    mBluetoothAdapter.startDiscovery();

}


// Create a BroadcastReceiver for ACTION_FOUND.
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (BluetoothDevice.ACTION_FOUND.equals(action)) {
            // Discovery has found a device. Get the BluetoothDevice
            // object and its info from the Intent.
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            String deviceName = device.getName();
            String deviceHardwareAddress = device.getAddress(); // MAC address

            Log.i("Device Name: " , "device " + deviceName);
            Log.i("deviceHardwareAddress " , "hard"  + deviceHardwareAddress);
        }
    }
};

結果

名前:LE-Bose Revolve + SoundLinkデバイスハードウェアアドレス:MAC .....

9
user3826696

このコードはBeaconManagerを使用し、新しいBluetoothデバイスを継続的にスキャンして、必要な情報を取得するために使用できるビーコンリストオブジェクトを返します。

BeaconManagerを必ずインポートしてください

private BeaconManager beaconManager;

//In onCreate method
beaconManager = BeaconManager.getInstanceForApplication(this);
beaconManager.getBeaconParsers().add(new BeaconParser().
                setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));

//use these out of the onCreate method
public void onScanStart(View view) {
        stopScanButton.setEnabled(true);
        scanningButton.setEnabled(false);
        beaconManager.bind(this);
}

@Override
public void onBeaconServiceConnect() {
    beaconManager.removeAllRangeNotifiers();
    beaconManager.addRangeNotifier(new RangeNotifier() {
    @Override
    public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
    for (Beacon b : beacons) {
        System.out.println(String.format("%s: %f: %d", b.getBluetoothName(), b.getDistance(), b.getRssi()));
  });
    try {
//Tells the BeaconService to start looking for beacons that match the passed.
        beaconManager.startRangingBeaconsInRegion(new Region("myRangingUniqueId", null, null, null));
    } catch (RemoteException e) {
        Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
    }
}

それで問題が解決するかどうかお知らせください。

0
Stelios Gabriel