標籤:tde android called 請求 通訊協定 開發 設定 str com
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
一. 什麼是藍芽(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:
[java] view plain copy
- 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(){
-
- @Override
- public 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("本機沒有藍牙裝置!");
- }
- }
- });
- }
- }
Android開發之藍芽(Bluetooth)操作(一)--掃描已經配對的藍牙裝置