91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現藍牙遙控器自動配對

發布時間:2022-08-17 16:45:09 來源:億速云 閱讀:351 作者:iii 欄目:開發技術

這篇文章主要介紹“Android如何實現藍牙遙控器自動配對”,在日常操作中,相信很多人在Android如何實現藍牙遙控器自動配對問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android如何實現藍牙遙控器自動配對”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

本文要實現的是在 android 8.0 的平臺上,藍牙遙控器與TV自動配對,具體就是在TV端打開配對界面,TV端開始搜索遠程藍牙設備,按下遙控器按鍵讓藍牙遙控器進入對碼模式,此時藍牙遙控器就能作為一個遠程藍牙設備被發現,TV端掃描到這個遠程藍牙設備(藍牙遙控器),就會自動進行配對連接。

話不多說,直接上代碼分析。

public class RcConnectActivity extends Activity {

        private static final String TAG = "RcConnectActivity";
        private BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        private BluetoothDevice mBluetoothDevice;
        private BluetoothReceiver mBluetoothReceiver = null;
        private boolean isConnected = false;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            Log.d(TAG, "onCreate");
            super.onCreate(savedInstanceState);
            setContentView(R.layout.rc_connect);
            registerReceiver();
            if (mBluetoothAdapter != null) {
                if (mBluetoothAdapter.isEnabled()) {
                    mBluetoothAdapter.startDiscovery();
                    Log.d(TAG, "mBluetoothAdapter.startDiscovery");
                } else {
                    mBluetoothAdapter.enable();
                    Log.d(TAG, "mBluetoothAdapter.enable");
                }
            } else {
                Toast.makeText(this, R.string.bluetooth_tip, Toast.LENGTH_SHORT).show();
            }
        }

首先我們要注冊一個廣播接收器,用來接收藍牙掃描搜索配對過程中一些藍牙相關的廣播,以便進行相對應的操作。

public void registerReceiver() {
        Log.d(TAG, "registerReceiver");
        IntentFilter filter = new IntentFilter();
        filter.addAction(BluetoothDevice.ACTION_FOUND);
        filter.addAction(BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED);
        filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
        filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
        mBluetoothReceiver = new BluetoothReceiver();
        registerReceiver(mBluetoothReceiver, filter);
    }

BluetoothDevice.ACTION_FOUND 也就是 android.bluetooth.device.action.FOUND,當發現遠程藍牙設備的時候,系統就會發出這條廣播。接收這條廣播需要以下權限。

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

BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED:當藍牙連接狀態改變時,就會發送此廣播。

BluetoothAdapter.ACTION_STATE_CHANGED:也就是 android.bluetooth.adapter.action.STATE_CHANGED 當本地藍牙適配器的狀態改變時,比如打開藍牙或者關閉藍牙的時候,就會發送此廣播。

BluetoothAdapter.ACTION_DISCOVERY_FINISHED:當本地藍牙適配器完成設備掃描搜索過程的時候,就會發送此廣播。

注冊完廣播接著就是通過 BluetoothAdapter.getDefaultAdapter() 來獲取本地藍牙適配器,如果硬件不支持藍牙的話,那么返回值為null。如果能獲取到,證明TV端是有可用的藍牙模塊,接著通過 isEnabled() 這個方法來判斷TV端的藍牙模塊是否已經打開并且可以使用,相當于 getBluetoothState() == STATE_ON 。如果已經打開藍牙,那么就可以通過 startDiscovery() 進行掃描藍牙設備,否則就通過 enable() 來打開藍牙。
startDiscovery() 需要<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />這個權限。

private class BluetoothReceiver extends BroadcastReceiver {
        @Override
        public void onReceive(Context context, Intent intent) {
            
            String action = intent.getAction(); 
            Log.d(TAG, "action = " + action);

            if(BluetoothDevice.ACTION_FOUND.equals(action)){ 
                mBluetoothDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                Log.d(TAG, "find device : " + "[ "+ mBluetoothDevice.getName() +" ]" + ":" + mBluetoothDevice.getAddress());
                
                if (mBluetoothDevice.getName() == null || !mBluetoothDevice.getName().equals("RCSP")) {
                    return;
                } else 
                {
                    if (mBluetoothDevice.getBondState() == BluetoothDevice.BOND_NONE) {
                        Log.d(TAG, "attemp to bond: " + "[ " + mBluetoothDevice.getName() + " ]");
                        try {
                            mBluetoothDevice.createBond();
                            isConnected = true;
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                    } 
                        
                }
            } else if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
                int status = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, 0);
                if (BluetoothAdapter.STATE_ON == status) {
                    mBluetoothAdapter.startDiscovery();
                    Log.d(TAG, "mBluetoothAdapter.startDiscovery---STATE_ON");
                }
            } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
                if (!isConnected) {
                    mBluetoothAdapter.startDiscovery();
                    Log.d(TAG, "mBluetoothAdapter.startDiscovery---ACTION_DISCOVERY_FINISHED");
                }
            } else if (BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
                int newState = intent.getExtras().getInt(BluetoothProfile.EXTRA_STATE);
                switch (newState) {
                    case BluetoothProfile.STATE_CONNECTING:
                        Log.d(TAG, "CONNECTING");
                        Toast.makeText(context, R.string.bluetooth_connecting, Toast.LENGTH_SHORT).show();
                        break;
                    case BluetoothProfile.STATE_CONNECTED:
                        Log.d(TAG, "CONNECTED");
                        Toast.makeText(context, R.string.bluetooth_connected, Toast.LENGTH_SHORT).show();
                        RcConnectActivity.this.finish();
                        break;
                }
            }    
        }
    }

流程分析:

1、如果TV端的藍牙模塊已經打開,那么就執行 startDiscovery(),否則通過 enable() 打開藍牙,此時會接收到 BluetoothAdapter.ACTION_STATE_CHANGED 這條廣播。藍牙有四種狀態,分別是STATE_OFF、STATE_TURNING_ON、STATE_ON、STATE_TURNING_OFF。當藍牙狀態為STATE_ON,表示藍牙已經打開并且已經準備就緒,此時才可以進行startDiscovery(),否則 startDiscovery() 會返回false,無法掃描搜索遠程藍牙設備。

2、掃描搜索到遠程設備之后,判斷是不是目標設備,目標設備藍牙遙控器的名字為 RCSP 。如果 getName() 獲取到的名字為null,或者不是 RCSP,直接 return,不進行任何操作。android 8.0 要對 getName() 為 null 進行處理,不然程序會運行出錯。如果搜索到目標設備,通過 createBond() 方法,實現自動配對。

3、startDiscovery() 會進行大約12秒的掃描搜索,有可能此時我們的目標設備還沒有進入對碼模式,還不能被TV端發現,從而也無法自動配對。當掃描搜索完成之后,會發送 BluetoothAdapter.ACTION_DISCOVERY_FINISHED 這條廣播,此時我們在判斷目標設備是否已經配對連接,如果沒有,再次調用 startDiscovery() 進行掃描搜索。

4、當目標設備在進行自動配對的時候,我們通過接收BluetoothInputDevice.ACTION_CONNECTION_STATE_CHANGED 這條廣播,來判斷目標設備的狀態,并用 Toast 提示配對是否成功。

到此,關于“Android如何實現藍牙遙控器自動配對”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安新县| 宜都市| 涪陵区| 洛隆县| 谷城县| 绍兴市| 太保市| 恩平市| 安图县| 桃源县| 朔州市| 五华县| 平泉县| 海盐县| 新田县| 邵阳市| 甘谷县| 西和县| 华阴市| 青海省| 天柱县| 云阳县| 沙洋县| 林甸县| 苏尼特左旗| 平山县| 阿图什市| 太谷县| 咸阳市| 玉林市| 肇州县| 卓资县| 抚宁县| 枝江市| 石柱| 临沂市| 威宁| 乐清市| 武安市| 蓬莱市| 莱阳市|