У меня есть проект, который я хочу подключить к устройству Bluetooth, щелкнув по нему в ListView
.До сих пор я сделал приложение, показывающее устройство Bluetooth, находящееся поблизости, в ListView
, но я до сих пор не знаю, как выполнить сопряжение и подключиться к этому устройству.
Это мое приложение похоже пока что
Это мой MainActivity.java
package com.example.user.bluet;
import android.Manifest;
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.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Set;
public class MainActivity extends AppCompatActivity {
Button buttonON, buttonOFF;
BluetoothAdapter myBluetoothAdapter;
private Set<String> pairedDevices;
Button scanButton;
ListView scanListView;
ArrayList<String> stringArrayList=new ArrayList<String>();
ArrayAdapter<String> arrayAdapter;
Intent btEnablingIntent;
int requestCodeForEnable;
Set<BluetoothDevice> devicesArray;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
buttonON=(Button) findViewById(R.id.btON);
buttonOFF=(Button) findViewById(R.id.btOFF);
myBluetoothAdapter=BluetoothAdapter.getDefaultAdapter();
btEnablingIntent=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
requestCodeForEnable=1;
bluetoothONMethod();
bluetoothOFFMethod();
scanButton=(Button) findViewById(R.id.btSCAN);
scanListView=(ListView) findViewById(R.id.scannedListView);
scanButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
myBluetoothAdapter.startDiscovery();
if (!myBluetoothAdapter.isEnabled()) {
Toast.makeText(getApplicationContext(), "Bluetooth is not enabled...", Toast.LENGTH_LONG).show();
} else if (myBluetoothAdapter.isEnabled()) {
Toast.makeText(getApplicationContext(), "Scanning...", Toast.LENGTH_LONG).show();
}
}
});
IntentFilter intentFilter=new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(myReceiver, intentFilter);
arrayAdapter=new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_list_item_1, stringArrayList);
scanListView.setAdapter(arrayAdapter);
// scanListView.setOnItemClickListener(new AdapterView.OnItemClickListener(){
// @Override
// public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//
// String address = stringArrayList.get(position);
// BluetoothDevice btDevice = myBluetoothAdapter.getRemoteDevice(address);
//
// // TODO: Pair
//
// }
// });
// Quick permission check
int permissionCheck = this.checkSelfPermission("Manifest.permission.ACCESS_FINE_LOCATION");
permissionCheck += this.checkSelfPermission("Manifest.permission.ACCESS_COARSE_LOCATION");
if (permissionCheck != 0) {
this.requestPermissions(new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 1001); //Any number
}
}
BroadcastReceiver myReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action=intent.getAction();
if(BluetoothDevice.ACTION_FOUND.equals(action))
{
BluetoothDevice device=intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
stringArrayList.add(device.getName()+ "\n" + device.getAddress());
arrayAdapter.notifyDataSetChanged();
}
}
};
private void bluetoothOFFMethod() {
buttonOFF.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(myBluetoothAdapter.isEnabled())
{
myBluetoothAdapter.disable();
Toast.makeText(getApplicationContext(), "Bluetooth is disabled", Toast.LENGTH_LONG).show();
}
}
});
}
private void getPairedDevices() {
devicesArray = myBluetoothAdapter.getBondedDevices();
if (devicesArray.size() > 0) {
for (BluetoothDevice device : devicesArray) {
pairedDevices.add(device.getName()+ "\n" + device.getAddress());
}
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode==requestCodeForEnable)
{
if(resultCode==RESULT_OK)
{
Toast.makeText(getApplicationContext(), "Bluetooth is Enabled", Toast.LENGTH_LONG).show();
}
else if(resultCode==RESULT_CANCELED)
{
Toast.makeText(getApplicationContext(),"Bluetooth enabling cancelled", Toast.LENGTH_LONG).show();
}
}
}
private void bluetoothONMethod() {
buttonON.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(myBluetoothAdapter==null)
{
Toast.makeText(getApplicationContext(),"Bluetooth does not support on this Device", Toast.LENGTH_LONG).show();
}
else
{
if(!myBluetoothAdapter.isEnabled())
{
startActivityForResult(btEnablingIntent, requestCodeForEnable);
}
}
}
});
}
А это мой androidmanifest.xml
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
android {
buildTypes {
debug {
debuggable true
}
</application>
Я читал некоторые темы в этом Stackoverflow и других форумах, но я все еще не понимаю.Надеюсь, вы, ребята, могли бы помочь мне Спасибо за ваши советы