获取蓝牙设置 Connect &使用意图配对屏幕?
我想直接导航到蓝牙设置“连接和连接”单击按钮上的配对屏幕,现在我可以导航直到无线设置。
我的代码如下:
Intent i=new Intent();
i.setClassName("com.android.settings","com.android.settings.WirelessSettings");
startActivity(i);
I want to navigate directly to the bluetooth settings Connect & pair screen on a button click now I can navigate till the wireless settings..
My code is as follows:
Intent i=new Intent();
i.setClassName("com.android.settings","com.android.settings.WirelessSettings");
startActivity(i);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很简单,试试这个:
It's pretty simple, try this:
使用以下方法:
这样您将打开蓝牙设置页面,然后返回到启动 Intent 的活动。
Use the follwoing:
This way you will open Bluetooth settings page and later return back to your activity that started the Intent.