Android開發之藍芽(Bluetooth)操作(一)–掃描已經配對的藍牙裝置

來源:互聯網
上載者:User

一. 什麼是藍芽(Bluetooth)?

1.1  BuleTooth是目前使用最廣泛的無線通訊協議

1.2  主要針對短距離裝置通訊(10m)

1.3  常用於串連耳機,滑鼠和移動通訊裝置等.

二. 與藍芽相關的API

2.1 BluetoothAdapter:

代表了本地的藍芽適配器

2.2 BluetoothDevice

代表了一個遠端Bluetooth裝置

三. 掃描已經配對的藍牙裝置(1)

註:必須部署在真實手機上,模擬器無法實現

首先需要在AndroidManifest.xml 聲明藍芽許可權

<user-permission android:name="android.permission.BLUETOOTH" />

配對藍芽需要手動操作:

1. 開啟設定--> 無線網路 --> 藍芽 勾選開啟

2. 開啟藍芽設定  掃描周圍已經開啟的藍牙裝置(可以與自己的膝上型電腦進行配對),點擊進行配對

 電腦上會彈出提示視窗: 添加裝置

 顯示計算與裝置之間的配對碼,要求確認是否配對

 手機上也會顯示類似的提示. 

四. 掃描已經配對的藍牙裝置(2)

4.1 獲得BluetoothAdapter對象

4.2 判斷當前行動裝置中是否擁有藍芽

4.3 判斷當前行動裝置中藍芽是否已經開啟

4.4 得到所有已經配對的藍牙裝置對象

實現代碼如下:

MainActivity:

import java.util.Iterator;import java.util.Set;import android.app.Activity;import android.bluetooth.BluetoothAdapter;import android.bluetooth.BluetoothDevice;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class MainActivity extends Activity {private Button button = null;    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);                button = (Button)findViewById(R.id.buttonId);        button.setOnClickListener(new OnClickListener(){@Overridepublic void onClick(View v) {//獲得BluetoothAdapter對象,該API是android 2.0開始支援的BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();//adapter不等於null,說明本機有藍牙裝置if(adapter != null){System.out.println("本機有藍牙裝置!");//如果藍牙裝置未開啟if(!adapter.isEnabled()){Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);//請求開啟藍牙裝置startActivity(intent);}//獲得已配對的遠程藍牙裝置的集合Set<BluetoothDevice> devices = adapter.getBondedDevices();if(devices.size()>0){for(Iterator<BluetoothDevice> it = devices.iterator();it.hasNext();){BluetoothDevice device = (BluetoothDevice)it.next();//列印出遠程藍牙裝置的物理地址System.out.println(device.getAddress());}}else{System.out.println("還沒有已配對的遠程藍牙裝置!");}}else{System.out.println("本機沒有藍牙裝置!");}}        });    }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.