1. 程式人生 > >藍芽(BluetoothAdapterj & BluetoothDevice)例項解析

藍芽(BluetoothAdapterj & BluetoothDevice)例項解析

參考部落格http://blog.csdn.net/qinjuning/article/details/7726093

import android.app.Activity;
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.widget.TextView;
import android.view.View;
import android.widget.Button;
import android.bluetooth.BluetoothAdapter;

public class BTTest extends EmActivity {
    TextView mtext1;
    TextView mtext2;
    View btn_pass;
    private TextView mTextView;
    Button mbutton;
    boolean mOrgBtState=false;
    BluetoothAdapter mBtAdapter=null;
    boolean btstate=false;
    String bt_status;
    String status_off;
    String status_on;
    String address;
    private int s=BluetoothAdapter.STATE_OFF;

    Button scanbutton;

    //定義當掃描到藍芽裝置或者藍芽狀態值發生變化時廣播接收器中的操作
    private final BroadcastReceiver mReceiver=new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action=intent.getAction();
            if(action.equals(BluetoothDevice.ACTION_FOUND)){
                //獲取到傳送的廣播中藍芽裝置的資訊
                BluetoothDevice device=intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                //這裡獲取裝置的繫結狀態也需要許可權android.permission.BLUTTOOTH.
                //BluetoothDevice.BOND_BONDED表示裝置已經繫結
                if(device.getBondState()!=BluetoothDevice.BOND_BONDED){
                    //獲取藍芽裝置的名稱,需要許可權
                    mTextView.append(device.getName()+"\n");
                    mTextView.invalidate();//重新整理UI控制元件
                    if(btn_pass==null){
                        View dv=getWindow().getDecorView();
                        btn_pass=dv.findViewById(R.id.btn_succ);
                    }
                    btn_pass.setVisibility(View.VISIBLE);
                }
            }else{//如果是藍芽狀態資訊改變
                int state=intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,BluetoothAdapter.ERROR);
                if(state!=BluetoothAdapter.ERROR){
                    //如果狀態為BluetoothAdapter.STATE_OFF or BluetoothAdapter.STATE_ON就更新介面
                    updateScreen(state);
                }
            }
        }
    };

    private void updateScreen(int mode){
        String state="";
        switch(mode){
            case BluetoothAdapter.STATE_OFF:
                state=status_off;
                break;
            case BluetoothAdapter.STATE_ON:
                state=status_on;
                address=mBtAdapter.getAddress();
                if(mBtAdapter.isDiscovering()){
                    mBtAdapter.cancelDiscovery();
                }
                mBtAdapter.startDiscovery();
                break;
            default:
                break;
        }
        mtext1.setText(bt_status+state);
        mtext2.setText(address);
    }

    @Override
    protected void onCreate(Bundle icicle){
        super.onCreate(icicle);
        setContentView(R.layout.em_bt);
        address=getString(R.string.unknown);
        bt_status=getString(R.string.bt_status);
        status_off=getString(R.string.status_off);
        status_on=getString(R.string.status_on);

        mtext1=(TextView)findViewById(R.id.m0_t1);
        mtext1.setText(bt_status+status_off);

        mtext2=(TextView)findViewById(R.id.m0_t2);
        mTextView=(TextView)findViewById(R.id.device_list);

        mbutton=(Button)findViewById(R.id.m0_b);
        mbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                switch (v.getId()){
                    case R.id.m0_b:
                    {
                        finish();//結束活動
                        return;
                    }
                    default:
                        break;
                }
            }
        });
        mbutton.setText("OK");

        scanbutton=(Button)findViewById(R.id.scan);
        scanbutton.setText(R.string.btn_text_scan);
        scanbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //傳送啟動系統藍芽設定介面的廣播
                Intent intent=new Intent();
                intent.setAction("android.settings.BLUETOOTH_SETTINGS");
                startActivity(intent);
                btnSucc.setEnabled(true);//btnSucc是父類的Button物件
            }
        });

        scanbutton.setVisibility(View.GONE);

        //功能:獲得本裝置的藍芽介面卡例項。
       // 返回值:如果裝置具備藍芽功能,返回BluetoothAdapter 例項;否則,返回null物件。
        mBtAdapter=BluetoothAdapter.getDefaultAdapter();

        //獲取當前藍芽的使能狀態,這裡需要藍芽許可權android.permission.BLUETOOTH
        mOrgBtState=mBtAdapter.isEnabled();
        if(mOrgBtState){
            mtext1.setText(bt_status+status_on);
        }
        btstate=mBtAdapter.isEnabled();
        if(!btstate){//如果當前藍芽的使能狀態為false
            mBtAdapter.enable();//使能藍芽介面卡
        }else{
            //如果當前藍芽的使能狀態為true,那麼獲取藍芽裝置的硬體地址(MAC地址)
            //這裡需要藍芽許可權android.permission.BLUETOOTH
            address=mBtAdapter.getAddress();
            //功能: 是否正在處於掃描過程中。 //注意: 如果藍芽沒有開啟,該方法會返回false。
            if(mBtAdapter.isDiscovering()){
                //功能: 取消掃描過程。 //注意: 如果藍芽沒有開啟,該方法會返回false。
                mBtAdapter.cancelDiscovery();
            }
            //功能: 掃描藍芽裝置  注意: 如果藍芽沒有開啟,該方法會返回false ,即不會開始掃描過程。
            mBtAdapter.startDiscovery();
            //如果不新增以上內容,如果已經在設定裡面開啟藍芽開關,再進入測試介面,不會自動掃描裝置
        }
        mtext2.setText(address);
    }

    @Override
    protected void onResume() {
        super.onResume();
        if(btn_pass==null){
            View dv=getWindow().getDecorView();
            btn_pass=dv.findViewById(R.id.btn_succ);
            btn_pass.setVisibility(View.GONE);
        }
        //註冊監聽藍芽狀態(on of off)的廣播和掃描裝置的廣播
        IntentFilter intentFilter=new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED);
        //藍芽掃描時,掃描到任一遠端藍芽裝置時,會發送此廣播。
        intentFilter.addAction(BluetoothDevice.ACTION_FOUND);
        registerReceiver(mReceiver,intentFilter);
    }

    @Override
    protected void onPause() {
        super.onPause();
    }

    @Override
    protected void onStop() {
        super.onStop();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        if(!btstate){
            /*功能:關閉藍芽裝置。
            返回值:該函式會立即返回。
            true    表示關閉操作成功
            false   表示藍芽操作失敗 , ①、當前藍芽已經關閉 ;  ②、其他一些異常情況*/
            mBtAdapter.disable(true);//需要許可權
        }
        unregisterReceiver(mReceiver);
    }
}