2

5秒ごとに存在するBluetoothデバイスを継続的に監視する必要があります。私は私のために働いていない次のコードを書きました。

private static final int DISCOVERY_REQUEST = 1;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_bluetooth_connection);

    final TextView tv = (TextView) findViewById(R.id.textView1);
    tv.setText("");
    final BluetoothAdapter mBluetoothAdapter = BluetoothAdapter
            .getDefaultAdapter();
    mBluetoothAdapter.startDiscovery();
    final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            // When discovery finds a device

            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object from the Intent
                BluetoothDevice device = intent
                        .getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                tv.append(device.getName() + "-"
                        + /* device.getAddress()+ */"\n");
                tv.append("here");
                /*
                 * if (device.getName().equals("ONCEWASCUT-L7")) {
                 * tv.append("this is in the vicinity");
                 * 
                 * }
                 */
            } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED
                    .equals(action)) {
                tv.append("\nEntered the Finished\n ");
                mBluetoothAdapter.startDiscovery();
            }
        }

    };
    String aDiscoverable = BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE;
    startActivityForResult(new Intent(aDiscoverable), DISCOVERY_REQUEST);
    IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
    registerReceiver(mReceiver, filter);
    mBluetoothAdapter.startDiscovery();
}

アプリケーションが正常に機能するように、これにどのコードを追加する必要があります.5秒ごとにBluetoothデバイスを監視する必要があることに注意してください。

4

2 に答える 2

0

Timer と TimerTask を使用して、特定のデバイスが使用可能かどうかを継続的に確認できます。

例えば:

Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask {
    @Override
    public void run () {
        //Here you can use handler or whatever you want to use.
    }
},delay, period);

delay - 最初の実行までのミリ秒単位の時間。

period - 後続の実行間のミリ秒単位の時間。

http://developer.android.com/reference/java/util/Timer.html#scheduleAtFixedRate

詳細については、このリンクを参照してください。

于 2013-04-29T12:11:35.243 に答える