Android——搜索传统蓝牙设备

 一,主布局:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
   >

    <ListView
        android:layout_weight="5"
        android:id="@+id/test_list_bluetooth"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </ListView>

    <LinearLayout
        android:layout_weight="0.2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <Button
           android:layout_gravity="left"
            android:layout_margin="10dp"
            android:id="@+id/scan"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="扫描蓝牙设备" />

        <Button
            android:id="@+id/btn_scan_ble"
            android:text="扫描BLE设备"
            android:layout_gravity="right"
            android:layout_margin="10dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

        <Button
        android:id="@+id/btn_stopscan"
        android:text="停止扫描"
        android:layout_gravity="right"
        android:layout_margin="10dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    </LinearLayout>

</LinearLayout>

二,列表Item

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:layout_marginBottom="20dp"
        android:layout_weight="1"
        android:hint="蓝牙名称"
        android:id="@+id/test_bluetooth_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:layout_marginBottom="20dp"
        android:layout_weight="1"
        android:hint="蓝牙地址"
        android:id="@+id/test_bluetooth_addr"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:textColor="@color/txt_blue"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:layout_marginBottom="20dp"
        android:layout_weight="1"
        android:hint="绑定状态"
        android:id="@+id/test_device_status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

三,蓝牙权限配置

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

四,activity上代码

package com.woasis.batteries.activity;

import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothManager;
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.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;

import com.woasis.batteries.R;
import com.woasis.batteries.lib.bluttoth.BluetoothData;
import com.woasis.batteries.lib.bluttoth.BluetoothService;

import java.io.IOError;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private ListView mListView;//列表对象
    IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
    List<Map<String,String>> deviceList;//列表数据源
    SimpleAdapter listItemAdapter;
    BluetoothAdapter bluetoothAdapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        findViewById(R.id.scan).setOnClickListener(this);
        findViewById(R.id.btn_stopscan).setOnClickListener(this);
        findViewById(R.id.btn_scan_ble).setOnClickListener(this);
        mListView=(ListView)findViewById(R.id.test_list_bluetooth);
        registerReceiver(mReceiver, filter);
       // bluetoothService = BluetoothService.getInstance(this, BluetoothService.BluetoothType.b4);
       // bluetoothService.setmBluetoothData(new BluetoothData("INVENT-7CEC7933","123"));
    }

    private Handler handler=new Handler(){
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case 0:/*停止扫描*/
                    listItemAdapter.notifyDataSetChanged();
                    Log.i("handler--0---收到消息:",deviceList.toString());
                    break;
                case 1:/*更新listview数据源*/
                    Bundle b =msg.getData();
                    String deviceName=b.getString("deviceName");
                    String deviceAddress=b.getString("deviceAddress");
                    Map map=new HashMap();
                    map.put("deviceName",deviceName);
                    map.put("deviceAddress",deviceAddress);
                    map.put("bluetooth_status","未配对");
                    boolean isAdd=false;
                    for(Map m :deviceList){
                        if(m.get("deviceAddress")!=map.get("deviceAddress")){
                            isAdd=true;
                        }
                    }
                    if(isAdd) {
                        deviceList.add(map);
                    }
                    listItemAdapter.notifyDataSetChanged();
                    Log.i("handler--1---收到消息:",map.toString());
                    break;
                default:
                    break;
            }
        }
    };
    BluetoothService bluetoothService;

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.scan:
                // bluetoothService.startBluetooth();
                //1,初始化蓝牙适配器
                final BluetoothManager bluetoothManager=(BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
                 bluetoothAdapter= bluetoothManager.getAdapter();
                //2,开启蓝牙
                if(bluetoothAdapter==null || !bluetoothAdapter.isEnabled()){
                    Intent enableBtIntent=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
                    startActivityForResult(enableBtIntent,1);
                }
                //3,扫描附近的设备
                deviceList=new ArrayList<>();

                if(bluetoothAdapter.isDiscovering()){
                    bluetoothAdapter.cancelDiscovery();
                }else{
                    //每次扫描之前都先判断一下是否存在已久配对的设备
                    Set<BluetoothDevice> paireDevices=bluetoothAdapter.getBondedDevices();
                    if(paireDevices.size()>0){
                        for(BluetoothDevice device :paireDevices){
                            Map map=new HashMap();
                            map.put("deviceName",device.getName());
                            map.put("deviceAddress",device.getAddress());
                            map.put("bluetooth_status","已配对");

                            deviceList.add(map);

                        }
                        Log.i("之前已经绑定过的设备:",deviceList.toString());
                    }
                    bluetoothAdapter.startDiscovery();//开始搜索
                }

                /*数据绑定listView*/
                if(deviceList!=null && deviceList.size()>0){
                    listItemAdapter=new SimpleAdapter(getBaseContext(),/*指明了SimpleAdapter关联的View的运行环境,也就是当前的Activity*/
                            deviceList,/*由Map组成的List,在List中的每条目对应ListView的一行,每一个Map中包含的就是所有在from参数中指定的key*/
                            R.layout.test_item_bluetooth_list,/*定义列表项的布局文件的资源ID,该资源文件至少应该包含在to参数中定义的ID*/
                            new String[]{"deviceName","deviceAddress","bluetooth_status"},/*将被添加到Map映射上的Key*/
                            new int[] {R.id.test_bluetooth_name,R.id.test_bluetooth_addr,R.id.test_device_status}/*将绑定数据的视图的Id跟from参数对应,这些被绑定的视图元素应该全是TextView*/
                    );
                    //设置适配器
                    mListView.setAdapter(listItemAdapter);
                }

                break;
            case R.id.btn_stopscan:
                Log.i("停止蓝牙扫描-------",String.valueOf(System.currentTimeMillis()));
                bluetoothAdapter.cancelDiscovery();//停止扫描
                break;
            case R.id.btn_scan_ble:/*扫描BLE设备*/
                break;
            default:
                break;
        }
    }

    /*监听扫描过程中的变化*/
    private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            // When discovery finds a device
            if (BluetoothDevice.ACTION_FOUND.equals(action))
            {
                // Get the BluetoothDevice object from the Intent
                // 通过EXTRA_DEVICE附加域来得到一个BluetoothDevice设备
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

                // If it's already paired, skip it, because it's been listed already
                // 如果这个设备是不曾配对过的,添加到list列表
                if (device.getBondState() != BluetoothDevice.BOND_BONDED)
                {
                    Message msg=new Message();
                    msg.what=1;
                    Bundle bundle=new Bundle();
                    bundle.putString("deviceName",device.getName());
                    bundle.putString("deviceAddress",device.getAddress());
                    msg.setData(bundle);
                    handler.sendMessage(msg);

                    Map map=new HashMap();
                    map.put("deviceName",device.getName());
                    map.put("deviceAddress",device.getAddress());
                    Log.i("扫描到的新设备:",map.toString());
                    Log.i("加入新设备之后,扫描到的总设备:",deviceList.toString());
                }
                // When discovery is finished, change the Activity title
            }
            else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action))
            {
                Log.i("扫描结束------扫描到的总设备:",deviceList.toString());
               handler.obtainMessage(0).sendToTarget();
            }
        }
    };

}
时间: 2024-09-16 04:48:32

Android——搜索传统蓝牙设备的相关文章

c++-C# 搜索周围蓝牙设备 并获取rssi强度信号的问题

问题描述 C# 搜索周围蓝牙设备 并获取rssi强度信号的问题 目前用inthehand.net.personal这个库处理,但是获取不到Rssi值,求大家指导! 解决方案 http://www.cnblogs.com/allen0118/archive/2012/08/26/2657327.html 解决方案二: http://www.jb51.net/article/33854.htm 解决方案三: 能用C++生成一个获取rssi值的dll供我调用也行!

Android搜索框通用版_Android

之前项目总会遇到很多搜索框类的功能,虽然不是很复杂,不过每次都要去自己处理数据,并且去处理搜索框的变化,写起来也比较麻烦,今天来做一个比较简单的通用搜索栏. 先看下效果图: 没什么特别的,只是今天要做的就是简单的把搜索框的内容封装一下. 一.分析功能 先考虑一下,搜索框一般都是由一个搜索图标(一般都是一个放大镜),一个输入框和一个清除按钮组成.然后会通过监听输入框的变化去处理清除按钮的显示和隐藏并且去过滤相关的数据.最后去刷新适配器,显示过滤后的数据.基本上搜索框的功能都大同小异. 有了上边的分

Xamarin框架开发Android搜索框 Search Dialog实例

Android 的搜索有两种可用方式:Search Dialog,SearchView. SearchView 简单,随意使用,这里主要说说 Search Dialog 的基本用法, 因为 Xamarin 的处理方式稍稍和 原生 Android 有些不同. 效果: Searchable 要使用 Search Dialog 需要配置一个搜索配置文件 : 放到Resources/xml 目录下 . 如果xml 目录不存在,需要手动创建一个. 文件名随便, 一般取 searchable.xml <?x

Android 搜索SD卡文件的开发示例_Android

       我们在进行Android开发时往往需要访问SD卡的内容,而且因为文件很多,希望能够在SD卡中进行搜索.本文就给出一个Android开发实例,演示如何搜索SD卡里的文件.        实例界面        首先让那个大家看看程序运行后的界面是什么样子的:        在第一个EditText中设置搜索的目录,默认为根目录"/".        第二个EditText为所要搜索的关键字.        Layout布局         下面贴出layout中的布局文件内

Android搜索框SearchView属性和用法详解

SearchView简介 SearchView是Android原生的搜索框控件,它提供了一个用户界面,用于用户搜索查询. SearchView默认是展示一个search的icon,点击icon展开搜索框,如果你想让搜索框默认就展开,可以通过setIconifiedByDefault(false);实现. SearchView属性 SearchView使用 xml中定义SearchView: <?xml version="1.0" encoding="utf-8"

Android 搜索结果匹配关键字且高亮显示功能

1. 单关键字 匹配 如果只是单关键字的话,那么我们先计算出他的下标,它的长度,然后就可以标记下标到下标+长度的这一段为特殊颜色即可,代码如下: if (name != null && name.contains(keyWord)) { int index = name.indexOf(keyWord); int len = keyWord.length(); Spanned temp = Html.fromHtml(name.substring(0, index) + "<

Android搜索控件SearchView的用法

最近看Android 4.0  mms,contact源码,发现其中搜索都是SearchView控件,下面自己试着写一个 效果 1.在res/menu/文件夹下建立menu.xml 配置文件 <menu   xmlns:android="http://schemas.android.com/apk/res/android">     <item android:id="@+id/search" android:title="@string

周鸿祎称360搜索传统中规中矩,并且不过度商业化

[科技讯]11月1日,奇虎360董事长周鸿祎日前在接受采访时表示,360搜索要做一个传统的.中规中矩的搜索,不过度商业化."唯一可能颠覆的就是用户体验上,更加尊重用户利益". 周鸿祎表示,360做搜索是从用户体验角度考虑的.360浏览器最早是和百度.谷歌合作,为他们带去流量.当谷歌撤出中国后,用户使用谷歌搜索很不稳定,转而抱怨360浏览器. 他指出,谷歌撤出中国后,国内的搜索市场缺乏竞争,用户的选择很少."360掌握了很大的流量,这是一个机会.如果360做搜索,一些问题就可能

android搜索框上下滑动变色效果_Android

搜索框上下滑动变透明度是现在APP中很常见的效果,先看看效果: 首先来看下布局骨架: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height