Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.bluetooth.BluetoothAdapter;

public class Main {
    /**
     * Checks if the bluetooth adapter is on and ready.
     */
    public static boolean isBluetoothAvailable() {
        BluetoothAdapter tempBtAdapter = BluetoothAdapter.getDefaultAdapter();
        return tempBtAdapter != null && tempBtAdapter.isEnabled();
    }
}