我正在开发需要BT连接的android应用。阅读“ Android开发者”页面后,像isEnabled()
这样的给定方法不起作用。错误是cannot resolve symbol isEnabled
。
导入的库为android.bluetooth.BluetoothAdapter
。在清单文件中,按照Android页面的说明,我还插入了对蓝牙的权限,BT管理和精确位置。
编码:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (bluetoothAdapter == null) {
Log.i("Fallo","Dispositivo sin bluetooth");
}
if (!bluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}
}
最佳答案
您正在onCreate方法外部创建BluetoothAdapter对象。将所有内容放在onCreate大括号内。