Android点击按钮打开蓝牙全部代码
时间: 2023-11-15 10:19:04 浏览: 126
好的,以下是一个完整的示例代码,可以在Android应用程序中使用按钮打开蓝牙:
在AndroidManifest.xml文件中添加以下权限:
```xml
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
```
在您的Activity中,添加以下代码:
```java
public class MainActivity extends AppCompatActivity {
private static final int REQUEST_ENABLE_BT = 1;
private BluetoothAdapter bluetoothAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 初始化蓝牙适配器
bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
// 检查蓝牙是否可用
if (bluetoothAdapter == null) {
// 设备不支持蓝牙
Toast.makeText(this, "设备不支持蓝牙", Toast.LENGTH_SHORT).show();
finish();
return;
}
// 获取按钮并设置点击监听器
Button btnOpenBluetooth = findViewById(R.id.btn_open_bluetooth);
btnOpenBluetooth.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
openBluetooth();
}
});
}
private void openBluetooth() {
// 如果蓝牙未开启,则请求用户打开蓝牙
if (!bluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
} else {
// 蓝牙已开启
Toast.makeText(this, "蓝牙已打开", Toast.LENGTH_SHORT).show();
}
}
// 处理用户打开蓝牙的结果
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_ENABLE_BT) {
if (resultCode == RESULT_OK) {
// 用户已打开蓝牙
Toast.makeText(this, "蓝牙已打开", Toast.LENGTH_SHORT).show();
} else {
// 用户未打开蓝牙
Toast.makeText(this, "无法打开蓝牙", Toast.LENGTH_SHORT).show();
}
}
}
}
```
在布局文件中添加一个按钮:
```xml
<Button
android:id="@+id/btn_open_bluetooth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="打开蓝牙" />
```
请注意,此示例仅适用于打开蓝牙。如果您需要更多蓝牙功能,例如搜索设备或与设备进行配对,请参考Android开发文档或其他教程。
阅读全文