无法使用Android BT API方法

时间:2019-10-17 17:45:20

标签: java android

我正在开发需要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);
    }

}

1 个答案:

答案 0 :(得分:1)

您正在onCreate方法之外创建BluetoothAdapter对象。将所有内容放在onCreate大括号内。