Wykrywanie urządzeń Bluetooth w systemie Android - startDiscovery ()

Cel: Zbuduj aplikację na Androida, która wykrywa nazwy i adresy urządzeń BT znajdujących się w zasięgu i przesyła ich wartości do usługi internetowej. Urządzenia BT nie były wcześniej podłączone do urządzenia hosta, chcę po prostu odpytywać wszystko, o czym mówię.

Co ja zrobiłem:

Nad dokumentacją.Zaimplementowano lokalną instancję adaptera BT urządzenia hosta.Zaimplementowano powiadomienie, aby włączyć BT, jeśli nie jest włączone.Zarejestrowani odbiorcy transmisji i intencje do analizyACTION_FOUNDs odejśćstartDiscovery ().ZarejestrowanyBLUETOOTH iBLUETOOTH_ADMIN uprawnienia w manifeście.

Rzeczy działają (jak testowano z przyrostowym rejestrowaniem konsoli) aż dostartDiscovery().


Udaremnienie:

startDiscovery () - Podejrzewam, że przekazuję to w złym kontekście. W jakim kontekście należy umieścić tę metodę, aby prawidłowo funkcjonować?

Jeśli udało ci się uruchomić tę metodę, bardzo bym docenił twoją mądrość.

AKTUALIZACJA - oto uproszczona uproszczona wersja kodu, która powoduje mój smutek; to uproszczenie podsumowuje mój błąd. Ten kod działa, wyrzuca niecat.log błędy lub inne błędy, po prostu nie daje żadnego wyjścia.

<code>package aqu.bttest;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.widget.Toast;

public class BT2Activity extends Activity {

private BluetoothAdapter mBTA;
private SingBroadcastReceiver mReceiver;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

  //register local BT adapter
    mBTA = BluetoothAdapter.getDefaultAdapter();
    //check to see if there is BT on the Android device at all
    if (mBTA == null){
        int duration = Toast.LENGTH_SHORT;
        Toast.makeText(this, "No Bluetooth on this handset", duration).show();
    }
    //let's make the user enable BT if it isn't already
    if (!mBTA.isEnabled()){
        Intent enableBT = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        startActivityForResult(enableBT, 0xDEADBEEF);
    }
    //cancel any prior BT device discovery
    if (mBTA.isDiscovering()){
        mBTA.cancelDiscovery();
    }
    //re-start discovery
    mBTA.startDiscovery();

    //let's make a broadcast receiver to register our things
    mReceiver = new SingBroadcastReceiver();
    IntentFilter ifilter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
    this.registerReceiver(mReceiver, ifilter);
}

private class SingBroadcastReceiver extends BroadcastReceiver {

    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction(); //may need to chain this to a recognizing function
        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 Toast
            String derp = device.getName() + " - " + device.getAddress();
            Toast.makeText(context, derp, Toast.LENGTH_LONG);
        }
    }
}
</code>

}

questionAnswers(1)

yourAnswerToTheQuestion