简体   繁体   English

与所选设备的蓝牙配对

[英]bluetooth pairing with selected device

Here is my problem/question, probably a nooby one.... 这是我的问题/问题,可能是一个nooby。

I have an activity where the app checks if the bluetooth is switched on, if not it displays a pop-up window with a button to activate it. 我有一个活动,该应用程序检查蓝牙是否已打开,如果没有打开,它会显示一个带有按钮的弹出窗口以将其激活。

when activated there is a button which will search for bluetooth devices. 激活后,有一个按钮将搜索蓝牙设备。

now my question is how can i pair to the selected device which will be protected with an password, if it is already paired just connect to it (witouth entering the password again) 现在我的问题是如何与选定的设备配对,该设备将受到密码保护(如果已配对),只需连接即可(无需再次输入密码)

after connecting to the device it should go to the next page. 连接到设备后,应转到下一页。

Here is my Code 这是我的代码

package com.example.silcamanager96x32;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
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.view.View.OnClickListener;
import android.widget.AdapterView.OnItemClickListener;

public class Bluetooth_check extends Activity {

    //global variables
    private final static int REQUEST_ENABLE_BT = 1;
    private  ArrayAdapter<String> btArrayAdapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_bluetooth_check);

        btn_go();
        btn_scan();

    }

    //tijdelijke button volgende pagina
    public void btn_go(){
        Button btn_go=(Button)findViewById(R.id.Button01);
        btn_go.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                  Log.i("clicks","You Clicked B1");
              Intent i=new Intent(
                     Bluetooth_check.this,
                     home.class);
              startActivity(i);
            }
        });
    }

    //button scannen naar bluetooth apparaten en in ene lijst plaatsen
    public void btn_scan(){
        final Button scanb = (Button)findViewById(R.id.button);
        final ListView Deviceslist = (ListView)findViewById(R.id.listView1);   
        btArrayAdapter = new ArrayAdapter<String>(Bluetooth_check.this, android.R.layout.simple_list_item_1);    
        Deviceslist.setAdapter(btArrayAdapter);

        //vraagt of app bluetooth mag inschakelen
        final BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        if (mBluetoothAdapter == null) {
            // Device does not support Bluetooth
            Toast.makeText(Bluetooth_check.this, "Your device doesnot support Bluetooth", Toast.LENGTH_LONG).show();
        }

        if (!mBluetoothAdapter.isEnabled()) {
            Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
            startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
        }

        //onclick scan button
        scanb.setOnClickListener(new OnClickListener()
        {
         public void onClick(View v)
            {
          btArrayAdapter.clear(); 
          mBluetoothAdapter.startDiscovery();
          Toast.makeText(Bluetooth_check.this, "Scanning Devices", Toast.LENGTH_LONG).show();

            }
        });

         Deviceslist.setOnItemClickListener( new OnItemClickListener() {

            public void onItemClick(AdapterView<?> arg0, View v, int position,
                    long id) {
                // onclick item gevonden apparaten

                     AlertDialog.Builder adb = new AlertDialog.Builder(
                     Bluetooth_check.this);
                     adb.setTitle("ListView OnClick");
                     adb.setMessage("Selected Item is = "
                     + Deviceslist.getItemAtPosition(position));
                     adb.setPositiveButton("Ok", null);
                     adb.show();                     
                                 }

         });

        registerReceiver(FoundReceiver, new IntentFilter(BluetoothDevice.ACTION_FOUND));
    }

    @Override
    protected void onDestroy() { 
    // TODO Auto-generated method stub 
    super.onDestroy();
    unregisterReceiver(FoundReceiver);
    }

    private final BroadcastReceiver FoundReceiver = new BroadcastReceiver(){ 
     @Override
     public void onReceive(Context context, Intent intent) { 
      // TODO Auto-generated method stub 
      String action = intent.getAction();  
      if(BluetoothDevice.ACTION_FOUND.equals(action)) {   
       BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
       btArrayAdapter.add(device.getName() + "\n" + device.getAddress());
       btArrayAdapter.notifyDataSetChanged();          
      }
  }};


}

try this link here is whole code ... Android + Pair devices via bluetooth programmatically and add permission to manifest 试试这个链接这里是完整的代码... Android +以编程方式通过蓝牙配对设备并添加权限以显示

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM