欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android藍牙開發(fā)深入解析

 更新時間:2013年10月25日 17:23:11   作者:  
由于近期正在開發(fā)一個通過藍牙進行數(shù)據(jù)傳遞的模塊,在參考了有關(guān)資料,并詳細閱讀了Android的官方文檔后,總結(jié)了Android中藍牙模塊的使用

1. 使用藍牙的響應權(quán)限

復制代碼 代碼如下:

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

2. 配置本機藍牙模塊

在這里首先要了解對藍牙操作一個核心類BluetoothAdapter

復制代碼 代碼如下:

BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
//直接打開系統(tǒng)的藍牙設(shè)置面板
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(intent, 0x1);
//直接打開藍牙
adapter.enable();
//關(guān)閉藍牙
adapter.disable();
//打開本機的藍牙發(fā)現(xiàn)功能(默認打開120秒,可以將時間最多延長至300秒)
Intent discoveryIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);//設(shè)置持續(xù)時間(最多300秒)

3.搜索藍牙設(shè)備

使用BluetoothAdapter的startDiscovery()方法來搜索藍牙設(shè)備

startDiscovery()方法是一個異步方法,調(diào)用后會立即返回。該方法會進行對其他藍牙設(shè)備的搜索,該過程會持續(xù)12秒。該方法調(diào)用后,搜索過程實際上是在一個System Service中進行的,所以可以調(diào)用cancelDiscovery()方法來停止搜索(該方法可以在未執(zhí)行discovery請求時調(diào)用)。

請求Discovery后,系統(tǒng)開始搜索藍牙設(shè)備,在這個過程中,系統(tǒng)會發(fā)送以下三個廣播:

ACTION_DISCOVERY_START:開始搜索

ACTION_DISCOVERY_FINISHED:搜索結(jié)束

ACTION_FOUND:找到設(shè)備,這個Intent中包含兩個extra fields:EXTRA_DEVICE和EXTRA_CLASS,分別包含BluetooDevice和BluetoothClass。

我們可以自己注冊相應的BroadcastReceiver來接收響應的廣播,以便實現(xiàn)某些功能

復制代碼 代碼如下:

// 創(chuàng)建一個接收ACTION_FOUND廣播的BroadcastReceiver
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        // 發(fā)現(xiàn)設(shè)備
        if (BluetoothDevice.ACTION_FOUND.equals(action)) {
            // 從Intent中獲取設(shè)備對象
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            // 將設(shè)備名稱和地址放入array adapter,以便在ListView中顯示
            mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
        }
    }
};
// 注冊BroadcastReceiver
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(mReceiver, filter); // 不要忘了之后解除綁定

4. 藍牙Socket通信

如果打算建議兩個藍牙設(shè)備之間的連接,則必須實現(xiàn)服務器端與客戶端的機制。當兩個設(shè)備在同一個RFCOMM channel下分別擁有一個連接的BluetoothSocket,這兩個設(shè)備才可以說是建立了連接。

服務器設(shè)備與客戶端設(shè)備獲取BluetoothSocket的途徑是不同的。服務器設(shè)備是通過accepted一個incoming connection來獲取的,而客戶端設(shè)備則是通過打開一個到服務器的RFCOMM channel來獲取的。

服務器端的實現(xiàn)

通過調(diào)用BluetoothAdapter的listenUsingRfcommWithServiceRecord(String, UUID)方法來獲取BluetoothServerSocket(UUID用于客戶端與服務器端之間的配對)

調(diào)用BluetoothServerSocket的accept()方法監(jiān)聽連接請求,如果收到請求,則返回一個BluetoothSocket實例(此方法為block方法,應置于新線程中)

如果不想在accept其他的連接,則調(diào)用BluetoothServerSocket的close()方法釋放資源(調(diào)用該方法后,之前獲得的BluetoothSocket實例并沒有close。但由于RFCOMM一個時刻只允許在一條channel中有一個連接,則一般在accept一個連接后,便close掉BluetoothServerSocket)

復制代碼 代碼如下:

private class AcceptThread extends Thread {
    private final BluetoothServerSocket mmServerSocket;

    public AcceptThread() {
        // Use a temporary object that is later assigned to mmServerSocket,
        // because mmServerSocket is final
        BluetoothServerSocket tmp = null;
        try {
            // MY_UUID is the app's UUID string, also used by the client code
            tmp = mBluetoothAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
        } catch (IOException e) { }
        mmServerSocket = tmp;
    }

    public void run() {
        BluetoothSocket socket = null;
        // Keep listening until exception occurs or a socket is returned
        while (true) {
            try {
                socket = mmServerSocket.accept();
            } catch (IOException e) {
                break;
            }
            // If a connection was accepted
            if (socket != null) {
                // Do work to manage the connection (in a separate thread)
                manageConnectedSocket(socket);
                mmServerSocket.close();
                break;
            }
        }
    }

    /** Will cancel the listening socket, and cause the thread to finish */
    public void cancel() {
        try {
            mmServerSocket.close();
        } catch (IOException e) { }
    }
}


客戶端的實現(xiàn)
通過搜索得到服務器端的BluetoothService

調(diào)用BluetoothService的listenUsingRfcommWithServiceRecord(String, UUID)方法獲取BluetoothSocket(該UUID應該同于服務器端的UUID)

調(diào)用BluetoothSocket的connect()方法(該方法為block方法),如果UUID同服務器端的UUID匹配,并且連接被服務器端accept,則connect()方法返回

注意:在調(diào)用connect()方法之前,應當確定當前沒有搜索設(shè)備,否則連接會變得非常慢并且容易失敗

復制代碼 代碼如下:

private class ConnectThread extends Thread {
    private final BluetoothSocket mmSocket;
    private final BluetoothDevice mmDevice;

    public ConnectThread(BluetoothDevice device) {
        // Use a temporary object that is later assigned to mmSocket,
        // because mmSocket is final
        BluetoothSocket tmp = null;
        mmDevice = device;

        // Get a BluetoothSocket to connect with the given BluetoothDevice
        try {
            // MY_UUID is the app's UUID string, also used by the server code
            tmp = device.createRfcommSocketToServiceRecord(MY_UUID);
        } catch (IOException e) { }
        mmSocket = tmp;
    }

    public void run() {
        // Cancel discovery because it will slow down the connection
        mBluetoothAdapter.cancelDiscovery();

        try {
            // Connect the device through the socket. This will block
            // until it succeeds or throws an exception
            mmSocket.connect();
        } catch (IOException connectException) {
            // Unable to connect; close the socket and get out
            try {
                mmSocket.close();
            } catch (IOException closeException) { }
            return;
        }

        // Do work to manage the connection (in a separate thread)
        manageConnectedSocket(mmSocket);
    }

    /** Will cancel an in-progress connection, and close the socket */
    public void cancel() {
        try {
            mmSocket.close();
        } catch (IOException e) { }
    }
}


連接管理(數(shù)據(jù)通信)
分別通過BluetoothSocket的getInputStream()和getOutputStream()方法獲取InputStream和OutputStream

使用read(bytes[])和write(bytes[])方法分別進行讀寫操作

注意:read(bytes[])方法會一直block,知道從流中讀取到信息,而write(bytes[])方法并不是經(jīng)常的block(比如在另一設(shè)備沒有及時read或者中間緩沖區(qū)已滿的情況下,write方法會block)

復制代碼 代碼如下:

private class ConnectedThread extends Thread {
    private final BluetoothSocket mmSocket;
    private final InputStream mmInStream;
    private final OutputStream mmOutStream;

    public ConnectedThread(BluetoothSocket socket) {
        mmSocket = socket;
        InputStream tmpIn = null;
        OutputStream tmpOut = null;

        // Get the input and output streams, using temp objects because
        // member streams are final
        try {
            tmpIn = socket.getInputStream();
            tmpOut = socket.getOutputStream();
        } catch (IOException e) { }

        mmInStream = tmpIn;
        mmOutStream = tmpOut;
    }

    public void run() {
        byte[] buffer = new byte[1024];  // buffer store for the stream
        int bytes; // bytes returned from read()

        // Keep listening to the InputStream until an exception occurs
        while (true) {
            try {
                // Read from the InputStream
                bytes = mmInStream.read(buffer);
                // Send the obtained bytes to the UI Activity
                mHandler.obtainMessage(MESSAGE_READ, bytes, -1, buffer)
                        .sendToTarget();
            } catch (IOException e) {
                break;
            }
        }
    }

    /* Call this from the main Activity to send data to the remote device */
    public void write(byte[] bytes) {
        try {
            mmOutStream.write(bytes);
        } catch (IOException e) { }
    }

    /* Call this from the main Activity to shutdown the connection */
    public void cancel() {
        try {
            mmSocket.close();
        } catch (IOException e) { }
    }
}


引用資料:Android官方SDK、《Android/OPhone完全開發(fā)講義》

相關(guān)文章

  • sqlite查詢結(jié)果在listview中展示的實現(xiàn)

    sqlite查詢結(jié)果在listview中展示的實現(xiàn)

    下面小編就為大家?guī)硪黄猻qlite查詢結(jié)果在listview中展示的實現(xiàn)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-04-04
  • APP添加CNZZ統(tǒng)計插件教程 Android版添加phonegap

    APP添加CNZZ統(tǒng)計插件教程 Android版添加phonegap

    這篇文章主要介紹了APP添加CNZZ統(tǒng)計插件教程,Android版添加phonegap,感興趣的小伙伴們可以參考一下
    2015-12-12
  • android實現(xiàn)給未簽名的apk簽名方法

    android實現(xiàn)給未簽名的apk簽名方法

    下面小編就為大家?guī)硪黄猘ndroid實現(xiàn)給未簽名的apk簽名方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-12-12
  • Android開發(fā)之基本控件和四種布局方式詳解

    Android開發(fā)之基本控件和四種布局方式詳解

    這篇文章主要介紹了Android開發(fā)之基本控件和四種布局方式詳解的相關(guān)資料,非常不錯具有參考借鑒價值,需要的朋友可以參考下
    2016-06-06
  • Android程序設(shè)計之AIDL實例詳解

    Android程序設(shè)計之AIDL實例詳解

    這篇文章主要介紹了Android程序設(shè)計的AIDL,以一個完整實例的形式較為詳細的講述了AIDL的原理及實現(xiàn)方法,需要的朋友可以參考下
    2014-09-09
  • Android中WebView的一些簡單用法

    Android中WebView的一些簡單用法

    這篇文章主要介紹了Android中WebView的一些簡單用法,WebView非常簡單,Android已經(jīng)封裝的非常完善,寫個小例子覆蓋其間常用的幾個方法;
    2016-08-08
  • Android音頻焦點管理實例詳解

    Android音頻焦點管理實例詳解

    音頻是個專業(yè)術(shù)語,音頻一詞已用作一般性描述音頻范圍內(nèi)和聲音有關(guān)的設(shè)備及其作用,人類能夠聽到的所有聲音都稱之為音頻,它可能包括噪音等,下面這篇文章主要給大家介紹了關(guān)于Android音頻焦點管理的相關(guān)資料,需要的朋友可以參考下
    2022-01-01
  • Android和PHP MYSQL交互開發(fā)實例

    Android和PHP MYSQL交互開發(fā)實例

    這篇文章主要介紹了Android和PHP MYSQL交互開發(fā)實例,對此感興趣的同學,可以試一下
    2021-04-04
  • Android錄屏功能的實現(xiàn)

    Android錄屏功能的實現(xiàn)

    這篇文章主要介紹了Android錄屏功能的實現(xiàn),具有很好的參考價值,希望對大家有所幫助,一起跟隨小編過來看看吧
    2018-05-05
  • Android 顯示和隱藏軟鍵盤的方法(手動)

    Android 顯示和隱藏軟鍵盤的方法(手動)

    在Android開發(fā)中,經(jīng)常會有一個需求,做完某項操作后,隱藏鍵盤,也即讓Android中的軟鍵盤不顯示。今天,和大家分享如何利用代碼來實現(xiàn)對Android的軟件盤的隱藏、顯示的操作
    2016-01-01

最新評論