2012-02-14 9 views
0

私はBluetooth Discoverableを作成したいと思います。Bluetoothを発見可能にする

私はこれのためのリンクを見つけましたが、私はこれをどうやって行うことができるのか分かりません。このコードにより、

[http://developer.android.com/reference/android/provider/Settings.System.html#BLUETOOTH_DISCOVERABILITY][1] 

答えて

2

お使いのデバイスは、300秒間に発見されます

if (mBluetoothAdapter.getScanMode() != BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) { 
     Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE); 
     discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300); 
     startActivity(discoverableIntent); 
    } 
関連する問題