android蓝牙主动发起配对实例
- package cn.madfinger.core;
- import java.io.IOException;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.UUID;
- import android.app.Activity;
- import android.bluetooth.BluetoothAdapter;
- import android.bluetooth.BluetoothDevice;
- import android.bluetooth.BluetoothSocket;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.widget.AdapterView;
- import android.widget.ArrayAdapter;
- import android.widget.Button;
- import android.widget.ListView;
- import android.widget.Toast;
- import android.widget.ToggleButton;
- public class BlueToothTestActivity extends Activity {
- //该UUID表示串口服务
- //请参考文章<a href="http://wiley.iteye.com/blog/1179417">http://wiley.iteye.com/blog/1179417</a>
- static final String SPP_UUID = "00001101-0000-1000-8000-00805F9B34FB";
- Button btnSearch, btnDis, btnExit;
- ToggleButton tbtnSwitch;
- ListView lvBTDevices;
- ArrayAdapter<String> adtDevices;
- List<String> lstDevices = new ArrayList<String>();
- BluetoothAdapter btAdapt;
- public static BluetoothSocket btSocket;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- // Button 设置
- btnSearch = (Button) this.findViewById(R.id.btnSearch);
- btnSearch.setOnClickListener(new ClickEvent());
- btnExit = (Button) this.findViewById(R.id.btnExit);
- btnExit.setOnClickListener(new ClickEvent());
- btnDis = (Button) this.findViewById(R.id.btnDis);
- btnDis.setOnClickListener(new ClickEvent());
- // ToogleButton设置
- tbtnSwitch = (ToggleButton) this.findViewById(R.id.tbtnSwitch);
- tbtnSwitch.setOnClickListener(new ClickEvent());
- // ListView及其数据源 适配器
- lvBTDevices = (ListView) this.findViewById(R.id.lvDevices);
- adtDevices = new ArrayAdapter<String>(this,
- android.R.layout.simple_list_item_1, lstDevices);
- lvBTDevices.setAdapter(adtDevices);
- lvBTDevices.setOnItemClickListener(new ItemClickEvent());
- btAdapt = BluetoothAdapter.getDefaultAdapter();// 初始化本机蓝牙功能
- // ========================================================
- // modified by wiley
- /*
- * if (btAdapt.getState() == BluetoothAdapter.STATE_OFF)// 读取蓝牙状态并显示
- * tbtnSwitch.setChecked(false); else if (btAdapt.getState() ==
- * BluetoothAdapter.STATE_ON) tbtnSwitch.setChecked(true);
- */
- if (btAdapt.isEnabled()) {
- tbtnSwitch.setChecked(false);
- } else {
- tbtnSwitch.setChecked(true);
- }
- // ============================================================
- // 注册Receiver来获取蓝牙设备相关的结果
- IntentFilter intent = new IntentFilter();
- intent.addAction(BluetoothDevice.ACTION_FOUND);// 用BroadcastReceiver来取得搜索结果
- intent.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
- intent.addAction(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);
- intent.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
- registerReceiver(searchDevices, intent);
- }
- private BroadcastReceiver searchDevices = new BroadcastReceiver() {
- public void onReceive(Context context, Intent intent) {
- String action = intent.getAction();
- Bundle b = intent.getExtras();
- Object[] lstName = b.keySet().toArray();
- // 显示所有收到的消息及其细节
- for (int i = 0; i < lstName.length; i++) {
- String keyName = lstName[i].toString();
- Log.e(keyName, String.valueOf(b.get(keyName)));
- }
- BluetoothDevice device = null;
- // 搜索设备时,取得设备的MAC地址
- if (BluetoothDevice.ACTION_FOUND.equals(action)) {
- device = intent
- .getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
- if (device.getBondState() == BluetoothDevice.BOND_NONE) {
- String str = "未配对|" + device.getName() + "|"
- + device.getAddress();
- if (lstDevices.indexOf(str) == -1)// 防止重复添加
- lstDevices.add(str); // 获取设备名称和mac地址
- adtDevices.notifyDataSetChanged();
- }
- }else if(BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)){
- device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
- switch (device.getBondState()) {
- case BluetoothDevice.BOND_BONDING:
- Log.d("BlueToothTestActivity", "正在配对......");
- break;
- case BluetoothDevice.BOND_BONDED:
- Log.d("BlueToothTestActivity", "完成配对");
- connect(device);//连接设备
- break;
- case BluetoothDevice.BOND_NONE:
- Log.d("BlueToothTestActivity", "取消配对");
- default:
- break;
- }
- }
- }
- };
- @Override
- protected void onDestroy() {
- this.unregisterReceiver(searchDevices);
- super.onDestroy();
- android.os.Process.killProcess(android.os.Process.myPid());
- }
- class ItemClickEvent implements AdapterView.OnItemClickListener {
- @Override
- public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
- long arg3) {
- if(btAdapt.isDiscovering())btAdapt.cancelDiscovery();
- String str = lstDevices.get(arg2);
- String[] values = str.split("\\|");
- String address = values[2];
- Log.e("address", values[2]);
- BluetoothDevice btDev = btAdapt.getRemoteDevice(address);
- try {
- Boolean returnValue = false;
- if (btDev.getBondState() == BluetoothDevice.BOND_NONE) {
- //利用反射方法调用BluetoothDevice.createBond(BluetoothDevice remoteDevice);
- Method createBondMethod = BluetoothDevice.class
- .getMethod("createBond");
- Log.d("BlueToothTestActivity", "开始配对");
- returnValue = (Boolean) createBondMethod.invoke(btDev);
- }else if(btDev.getBondState() == BluetoothDevice.BOND_BONDED){
- connect(btDev);
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- private void connect(BluetoothDevice btDev) {
- UUID uuid = UUID.fromString(SPP_UUID);
- try {
- btSocket = btDev.createRfcommSocketToServiceRecord(uuid);
- Log.d("BlueToothTestActivity", "开始连接...");
- btSocket.connect();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- class ClickEvent implements View.OnClickListener {
- @Override
- public void onClick(View v) {
- if (v == btnSearch)// 搜索蓝牙设备,在BroadcastReceiver显示结果
- {
- if (btAdapt.getState() == BluetoothAdapter.STATE_OFF) {// 如果蓝牙还没开启
- Toast.makeText(BlueToothTestActivity.this, "请先打开蓝牙", 1000)
- .show();
- return;
- }
- if (btAdapt.isDiscovering())
- btAdapt.cancelDiscovery();
- lstDevices.clear();
- Object[] lstDevice = btAdapt.getBondedDevices().toArray();
- for (int i = 0; i < lstDevice.length; i++) {
- BluetoothDevice device = (BluetoothDevice) lstDevice[i];
- String str = "已配对|" + device.getName() + "|"
- + device.getAddress();
- lstDevices.add(str); // 获取设备名称和mac地址
- adtDevices.notifyDataSetChanged();
- }
- setTitle("本机蓝牙地址:" + btAdapt.getAddress());
- btAdapt.startDiscovery();
- } else if (v == tbtnSwitch) {// 本机蓝牙启动/关闭
- if (tbtnSwitch.isChecked() == false)
- btAdapt.enable();
- else if (tbtnSwitch.isChecked() == true)
- btAdapt.disable();
- } else if (v == btnDis)// 本机可以被搜索
- {
- Intent discoverableIntent = new Intent(
- BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
- discoverableIntent.putExtra(
- BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
- startActivity(discoverableIntent);
- } else if (v == btnExit) {
- try {
- if (btSocket != null)
- btSocket.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- BlueToothTestActivity.this.finish();
- }
- }
- }
- }
android蓝牙主动发起配对实例的更多相关文章
- 如何实现android蓝牙开发 自动配对连接,并不弹出提示框
之前做一个android版的蓝牙 与血压计通讯的项目,遇到最大的难题就是自动配对. 上网查资料说是用反射createBond()和setPin(),但测试时进行配对还是会出现提示,但配对是成功了 我就 ...
- Android 蓝牙开发之搜索、配对、连接、通信大全
蓝牙( Bluetooth®):是一种无线技术标准,可实现固定设备.移动设备和楼宇个人域网之间的短距离数据 交换(使用2.4-2.485GHz的ISM波段的UHF无线电波).蓝牙设备最 ...
- Android蓝牙实例(和单片机蓝牙模块通信)
最近做毕设,需要写一个简单的蓝牙APP进行交互,在网上也找了很多资料,终于给搞定了,这里分享一下^_^. 1.Android蓝牙编程 蓝牙3.0及以下版本编程需要使用UUID,UUID是通用唯一识别码 ...
- Android自己主动化測试之Monkeyrunner用法及实例
眼下android SDK里自带的现成的測试工具有monkey 和 monkeyrunner两个.大家别看这俩兄弟名字相像,但事实上是完全然全不同的两个工具,应用在不同的測试领域.总的来说,monke ...
- Android蓝牙自动配对Demo,亲测好使!!!
蓝牙自动配对,即搜索到其它蓝牙设备之后直接进行配对,不需要弹出配对确认框或者密钥输入框. 转载请注明出处http://blog.csdn.net/qq_25827845/article/details ...
- Android蓝牙自动配对Demo,亲测好使!!!(转)
蓝牙自动配对,即搜索到其它蓝牙设备之后直接进行配对,不需要弹出配对确认框或者密钥输入框. 转载请注明出处http://blog.csdn.net/qq_25827845/article/details ...
- Android 蓝牙开发(整理大全)
Android蓝牙开发 鉴于国内Android蓝牙开发的例子很少,以及蓝牙开发也比较少用到,所以找的资料不是很全. (一): 由于Android蓝牙的通信都需要用到UUID,如果由手机发起搜索,当搜索 ...
- Android蓝牙学习笔记
一 Bluetooth基本概念 蓝牙是无线数据和语音传输的开放式标准,它将各种通信设备.计算机及其终端设备.各种数字数据系统.甚至家用电器采用无线方式联接起来.它的传输距离为10cm-10m,如果增加 ...
- Android 蓝牙4.0 BLE
Android ble (Bluetooth Low Energy) 蓝牙4.0,也就是说API level >= 18,且支持蓝牙4.0的手机才可以使用. BLE是蓝牙4.0的核心Profil ...
随机推荐
- 【Codeforces Round #426 (Div. 2) C】The Meaningless Game
[Link]:http://codeforces.com/contest/834/problem/C [Description] 有一个两人游戏游戏; 游戏包括多轮,每一轮都有一个数字k,赢的人把自己 ...
- C++的class的样例
私有就是仅仅可以通过内部调用,在类外面是不可以使用私有成员的 简单的写一个 Class A { public: //你能够通过公有的函数去訪问私有成员 Demo() //能够在这使 ...
- Problem C: Celebrity Split
题目描写叙述 Problem C: Celebrity Split Jack and Jill have decided to separate and divide their property e ...
- css笔记(二)——几种经常使用的模式
文本垂直居中 对于行内元素,height会自己主动收缩到包裹住文本的高度,所以不存在这个问题. 可是对于block和inline-block等盒子元素.假设设置了height属性,则文本默认会在上方显 ...
- 1.17 Python基础知识 - 迭代器和生成器初识
可循环迭代的对象称为可迭代对象,迭代器和生成器函数是可迭代对象. 列表解析表达式:可以简单高效处理一个可迭代对象,并生成结果列表 示例代码: [ i ** 2 for i in range(10) ] ...
- BZOJ3530: [Sdoi2014]数数(Trie图,数位Dp)
Description 我们称一个正整数N是幸运数,当且仅当它的十进制表示中不包含数字串集合S中任意一个元素作为其子串.例如当S=(22,333,0233)时,233是幸运数,2333.20233.3 ...
- CSRF Failed: Referer checking failed - no Referer
postman模拟登录出了这个错误,其实看标题就知道大概是怎么回事,网上大概找了办法,也没说到位,所以干脆自己找源码了. 问题很明显就是出在 CSRF 上,理所当然去查看 CsrfViewMiddle ...
- MFC ClistCtr锁定隐藏某一列
通过设置列的宽度为0, 可以隐藏列表框的某一列,但是用户通过拖动列表框的大小,隐藏的列,可能又被显示出来了. 我们可以自己写一个CListEx继承CListCtr,然后捕获拖动的消息,对该消息进行特殊 ...
- 【Codeforces Round #452 (Div. 2) A】 Splitting in Teams
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 贪心 1优先和2组队. 如果1没有了 就结束. 如果1还有多余的. 那么就自己3个3个组队 [代码] #include <bi ...
- POJ——T2271 Guardian of Decency
http://poj.org/problem?id=2771 Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 5932 A ...