我正在開發一個具有藍牙功能的android應用程序。但我有一個問題。我使用下面的代碼Android藍牙啓用錯誤
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter == null) {
// Device does not support Bluetooth
tv.setText("Device is not there");
setContentView(tv);
}
else
{
if (!mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}
tv.setText("Device is there");
setContentView(tv);
}
我得到錯誤的
if (!mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}
每當我試圖運行的代碼,我的應用程序崩潰通過展示與「強制關閉」按鈕的消息框。錯誤在哪裏,我還沒搞清楚。請幫助。 Regards
是的,這就是我犯的錯誤,只是在我的清單中添加上面的行,並解決問題。謝了,兄弟。 – 2012-04-28 22:16:48
我得到的錯誤無法解析「REQUEST_ENABLE_BT」。什麼導致了這個錯誤? – 20B2 2017-06-08 02:58:36