Android开发中编写蓝牙相关功能的核心代码讲解

Android开发中编写蓝牙相关功能的核心代码讲解,第1张

概述一.什么是蓝牙(Bluetooth)?1.1 BuleTooth是目前使用最广泛的无线通信协议1.2 主要针对短距离设备通讯(10m)

一. 什么是蓝牙(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. 打开蓝牙设置  扫描周围已经开启的蓝牙设备(可以与自己的笔记本电脑进行配对),点击进行配对
 电脑上会d出提示窗口: 添加设备
 显示计算与设备之间的配对码,要求确认是否配对
 手机上也会显示类似的提示.
四. 扫描已经配对的蓝牙设备(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.OnClick@R_404_6818@ener; 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.setonClick@R_404_6818@ener(new OnClick@R_404_6818@ener(){        @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("本机没有蓝牙设备!");         }       }     });   } } 


修改本机蓝牙设备的可见性,并扫描周围可用的蓝牙设备
1. 修改本机蓝牙设备的可见性
2. 扫描周围可用的蓝牙设备

Eg:
一.  清单文件AdroIDManifest.xml:

<?xml version="1.0" enCoding="utf-8"?> <manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"    package="com.se7en"    androID:versionCode="1"    androID:versionname="1.0">   <uses-sdk androID:minSdkVersion="8" />    <application androID:icon="@drawable/icon" androID:label="@string/app_name">     <activity androID:name=".MainActivity"          androID:label="@string/app_name">       <intent-filter>         <action androID:name="androID.intent.action.MAIN" />         <category androID:name="androID.intent.category.LAUNCHER" />       </intent-filter>     </activity>   </application>   <uses-permission androID:name="androID.permission.BLUetoOTH"/>      <!-若需要管理蓝牙设备,如修改可见性,则需以下的权限->   <uses-permission androID:name="androID.permission.BLUetoOTH_admin"/> </manifest> 

二. 布局文件: main.xml:

<?xml version="1.0" enCoding="utf-8"?> <linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"   androID:orIEntation="vertical"   androID:layout_wIDth="fill_parent"   androID:layout_height="fill_parent"   >   <TextVIEw      androID:layout_wIDth="fill_parent"      androID:layout_height="wrap_content"      androID:text="@string/hello"     />   <button      androID:ID="@+ID/discoverbutton"     androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:text="设置可见性"/>   <button      androID:ID="@+ID/scanbutton"     androID:layout_wIDth="fill_parent"     androID:layout_height="wrap_content"     androID:text="开始扫描"/> </linearLayout> 

三. MainActivity:

import androID.app.Activity; import androID.bluetooth.BluetoothAdapter; import androID.bluetooth.BluetoothDevice; import androID.content.broadcastReceiver; import androID.content.Context; import androID.content.Intent; import androID.content.IntentFilter; import androID.os.Bundle; import androID.vIEw.VIEw; import androID.vIEw.VIEw.OnClick@R_404_6818@ener; import androID.Widget.button;  public class MainActivity extends Activity {   private button discoverbutton = null;   private button scanbutton = null;   private BluetoothAdapter adapter = null;   private BluetoothReceiver bluetoothReceiver = null;   /** Called when the activity is first created. */   @OverrIDe   public voID onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentVIEw(R.layout.main);          adapter = BluetoothAdapter.getDefaultAdapter();          discoverbutton = (button)findVIEwByID(R.ID.discoverbutton);     scanbutton = (button)findVIEwByID(R.ID.scanbutton);     //修改蓝牙设备的可见性     discoverbutton.setonClick@R_404_6818@ener(new OnClick@R_404_6818@ener(){       @OverrIDe       public voID onClick(VIEw vIEw) {       Intent discoverIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_disCOVERABLE);  //设置蓝牙可见性,500表示可见时间(单位:秒),当值大于300时默认为300 discoverIntent.putExtra(BluetoothAdapter.EXTRA_disCOVERABLE_DURATION,500); startActivity(discoverIntent);       }     });          scanbutton.setonClick@R_404_6818@ener(new OnClick@R_404_6818@ener(){       @OverrIDe       public voID onClick(VIEw v) {     //开始扫描周围蓝牙设备,该方法是异步调用并以广播的机制返回,所以需要创建一个broadcastReceiver来获取信息         adapter.startdiscovery();       }     });          //设定广播接收的filter     IntentFilter intentFilter = new IntentFilter(BluetoothDevice.ACTION_FOUND);     //创建蓝牙广播信息的receiver     bluetoothReceiver = new BluetoothReceiver ();     //注册广播接收器     registerReceiver(bluetoothReceiver,intentFilter);          }      private class BluetoothReceiver extends broadcastReceiver{     @OverrIDe     public voID onReceive(Context context,Intent intent) {       //获得扫描到的远程蓝牙设备       BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);       System.out.println(device.getAddress());     }        } } 

总结

以上是内存溢出为你收集整理的Android开发中编写蓝牙相关功能的核心代码讲解全部内容,希望文章能够帮你解决Android开发中编写蓝牙相关功能的核心代码讲解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1149618.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存