Android Bluetooth Turn ON or OFF with Examples

In android, Bluetooth is a communication network protocol, which allows devices to connect wirelessly to exchange the data with other Bluetooth devices.

 

Generally, in android applications by using Bluetooth API’s we can implement Bluetooth functionalities, such as enable or disable Bluetooth, searching for available Bluetooth devices, connecting with the devices and managing the data transfer between devices within the range.

 

In android, we can perform Bluetooth related activities by using BluetoothAdapter class in our applications. To know more about BluetoothAdapter, check this Android Bluetooth with Examples.

Android Enable or Turn On Bluetooth

In android, By using the startActivityForResult() method with ACTION_REQUEST_ENABLE intent action parameter we can enable or turn on Bluetooth in our android applications.

 

Following is the code snippet to enable a Bluetooth by using BluetoothAdapter parameter ACTION_REQUEST_ENABLE.

 

Intent eintent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(eintent, intVal);

If you observe above code snippet, we used startActivityForResult() method with ACTION_REQUEST_ENABLE intent action parameter to enable a Bluetooth. The second parameter intVal is a locally defined integer that must be greater than 0.

Android Disable or Turn OFF Bluetooth

In android, we can disable or turn off Bluetooth just by invoking a BluetoothAdapter method disable().

 

Following is the code snippet to disable or turn off Bluetooth in android applications using disable() function.

 

BluetoothAdapter bAdapter = BluetoothAdapter.getDefaultAdapter();
bAdapter.disable();

As we discussed in previous tutorial Android Bluetooth with Examples, we need to set Bluetooth permissions in our android manifest file as shown below to use Bluetooth features in our android applications.

 

<manifest ... >
<
uses-permission android:name="android.permission.BLUETOOTH"/>
<
uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<
uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
...

</manifest>

Android Bluetooth Turn ON / OFF Example

Following is the example of turning on or off Bluetooth on button click in android applications.

 

Create a new android application using android studio and give names as BluetoothExample. In case if you are not aware of creating an app in android studio check this article Android Hello World App.

 

Once we create an application, open activity_main.xml file from \res\layout folder path and write the code like as shown below.

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   
android:layout_width="match_parent"
   
android:layout_height="match_parent"
   
android:paddingLeft="10dp"
   
android:paddingRight="10dp">
    <
Button
       
android:id="@+id/btnOn"
       
android:layout_width="wrap_content"
       
android:layout_height="wrap_content"
       
android:text="Turn On" android:layout_marginLeft="100dp" android:layout_marginTop="200dp" />
    <
Button
       
android:id="@+id/btnOFF"
       
android:layout_width="wrap_content"
       
android:layout_height="wrap_content"
       
android:layout_alignBottom="@+id/btnOn"
       
android:layout_toRightOf="@+id/btnOn"
       
android:text="Turn OFF" />
</
RelativeLayout>

Now open your main activity file MainActivity.java from \java\com.tutlane.bluetoothexample path and write the code like as shown below

MainActivity.java

package com.tutlane.bluetoothexample;
import android.bluetooth.BluetoothAdapter;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
   
@Override
   
protected void onCreate(Bundle savedInstanceState) {
       
super.onCreate(savedInstanceState);
        setContentView(R.layout.
activity_main);
        Button btntOn = (Button)findViewById(R.id.
btnOn);
        Button btntOff = (Button)findViewById(R.id.
btnOFF);
       
final BluetoothAdapter bAdapter = BluetoothAdapter.getDefaultAdapter();
        btntOn.setOnClickListener(
new View.OnClickListener() {
           
@Override
           
public void onClick(View v) {
           
if(bAdapter == null)
            {
                Toast.makeText(getApplicationContext(),
"Bluetooth Not Supported",Toast.LENGTH_SHORT).show();
            }
           
else{
               
if(!bAdapter.isEnabled()){
                    startActivityForResult(
new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE),1);
                    Toast.makeText(getApplicationContext(),
"Bluetooth Turned ON",Toast.LENGTH_SHORT).show();
                }
            }
            }
        });
        btntOff.setOnClickListener(
new View.OnClickListener() {
           
@Override
           
public void onClick(View v) {
               
bAdapter.disable();
                Toast.makeText(getApplicationContext(),
"Bluetooth Turned OFF", Toast.LENGTH_SHORT).show();
            }
        });
    }
}

If you observe above code, we used startActivityForResult() method with BluetoothAdapter action parameter ACTION_REQUEST_ENABLE intent to enable or disable a Bluetooth in our application.

 

As discussed, we need to set Bluetooth permissions in android manifest file (AndroidManifest.xml) to access Bluetooth features in android applications. Now open android manifest file (AndroidManifest.xml) and write the code like as shown below

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   
package="com.tutlane.bluetoothexample">
    <
uses-permission android:name="android.permission.BLUETOOTH"/>
    <
uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <
application
       
android:allowBackup="true"
       
android:icon="@mipmap/ic_launcher"
       
android:label="@string/app_name"
       
android:roundIcon="@mipmap/ic_launcher_round"
       
android:supportsRtl="true"
       
android:theme="@style/AppTheme">
        <
activity android:name=".MainActivity">
            <
intent-filter>
                <
action android:name="android.intent.action.MAIN" />
                <
category android:name="android.intent.category.LAUNCHER" />
            </
intent-filter>
        </
activity>
    </
application>
</
manifest>

If you observe above code, we added required Bluetooth permissions in manifest file to access Bluetooth features in android applications.

Output of Android Bluetooth Turn ON / OFF Example

When we run the above program in the android studio we will get the result as shown below.

 

Android Bluetooth Turn ON or OFF with Example Result

 

When we click on Turn ON button, the device Bluetooth gets switched ON and when we click on Turn OFF button, the device Bluetooth gets switched OFF.

 

This is how we can turn ON / OFF or enable/disable Bluetooth in android applications based on our requirements.