python调试蓝牙适配器_我写了一个查看Android手机的蓝牙模块是否开启的代码。在AVD上调试,因为是电脑,没有蓝牙适配器,可是...
為什么我用到藍牙手機上的時候,剛打開這個程序,就會停止工作呢?代碼如下,代碼格式什么沒錯。publicclassMainActivityextendsActivity{BluetoothAdaptermBluetoothAdapter=null;@O...
為什么我用到藍牙手機上的時候,剛打開這個程序,就會停止工作呢?代碼如下,代碼格式什么沒錯。
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;
}
展開
總結
以上是生活随笔為你收集整理的python调试蓝牙适配器_我写了一个查看Android手机的蓝牙模块是否开启的代码。在AVD上调试,因为是电脑,没有蓝牙适配器,可是...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 全球首家停产燃油车传统车企!比亚迪董秘公
- 下一篇: python 定义变量_第三章(第2节)