Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HI all,

I want to enable/disable bluetooth through the program..I has the following code.

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();    
if (!mBluetoothAdapter.isEnabled()) {
        Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);

But this sort of code is not working in SDK 1.5..How can i do the same in SDK 1.5.?

share|improve this question
How is it not working? Are you getting an error? If so what is the error? – Adam Driscoll Sep 27 '10 at 18:12
BluetoothAdapter is showing error in SDK 1.5 – user458295 Sep 27 '10 at 18:34

3 Answers

up vote 7 down vote accepted

Android BluetoothAdapter docs say it has been available since API Level 5. API Level 5 is Android 2.0.

You can try using a backport of the Bluetooth API (have not tried it personally): http://code.google.com/p/backport-android-bluetooth/

share|improve this answer

this code worked for me..

//Disable bluetooth

    BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();    
    if (!mBluetoothAdapter.isEnabled()) {

    }else{ 
        mBluetoothAdapter.disable(); 
    } 
share|improve this answer
it really works for me also. simple method to disconnect the bluetooth in android devices. thanks a lot buddy. – Android Developer Jun 14 '11 at 6:39
my pleasure dude..:) – prijin Jun 30 '11 at 5:10

It is clearly explained in the,Bluetooth example please visit the link.(http://android-videos.blogspot.in/2011/10/android-bluetooth-sample-app.html).

share|improve this answer
Please try and actually include the advice within your answer. StackOverflow is essentially an archive of information, in years to come it's quite possible that the URL posted will have been taken down or moved and the answer will be lost. – Grant Clements Mar 15 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.