python调试蓝牙适配器_我写了一个查看Android手机的蓝牙模块是否开启的代码。在AVD上调试,因为是电脑,没有蓝牙适配器,可是...
為什么我用到藍(lán)牙手機(jī)上的時(shí)候,剛打開這個(gè)程序,就會(huì)停止工作呢?代碼如下,代碼格式什么沒錯(cuò)。publicclassMainActivityextendsActivity{BluetoothAdaptermBluetoothAdapter=null;@O...
為什么我用到藍(lán)牙手機(jī)上的時(shí)候,剛打開這個(gè)程序,就會(huì)停止工作呢?代碼如下,代碼格式什么沒錯(cuò)。
public class MainActivity extends Activity {
BluetoothAdapter mBluetoothAdapter = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if(mBluetoothAdapter != null){
if(mBluetoothAdapter.isEnabled()){
Toast.makeText(this, "OK!", Toast.LENGTH_LONG).show();
}else {
Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivity(intent);
Toast.makeText(this, "Now,bluetooth is open!", Toast.LENGTH_LONG).show();
}
}else{
Toast.makeText(this, "Your equipment does not support bluetooth!", Toast.LENGTH_LONG).show();
}
//setBluetooth();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
展開
總結(jié)
以上是生活随笔為你收集整理的python调试蓝牙适配器_我写了一个查看Android手机的蓝牙模块是否开启的代码。在AVD上调试,因为是电脑,没有蓝牙适配器,可是...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 全球首家停产燃油车传统车企!比亚迪董秘公
- 下一篇: shell判断false_Linux脚本