自动打开蓝牙,一段时间后它应自动关闭。
在android编程中有可能吗?
我试过这个BA = BluetoothAdapter.getDefaultAdapter()
;
BA = BluetoothAdapter.getDefaultAdapter();
if (!BA.isEnabled()) {
BA.enable();
Toast.makeText(getApplicationContext(), "Bluetooth switched On", Toast.LENGTH_LONG).show();
} if(BA.isEnabled()) {
BA.disable();
Toast.makeText(getApplicationContext(), "Bluetooth switched On", Toast.LENGTH_LONG).show();
}
这将打开蓝牙,但它没有关闭......在应用程序的第二次运行中它正在关闭..
答案 0 :(得分:0)
不,你不能,最新的棉花糖更新你需要获得许可,除非用户感到舒服