仅显示蓝牙系统设置活动,不显示任何其他内容

时间:2015-01-26 09:26:47

标签: android android-intent bluetooth

我的问题类似于Android Wifi Settings within app(Kiosk-sh app),但对于蓝牙设置。

简而言之,我有一个以自助服务终端模式运行的应用,并希望显示蓝牙设置

如果我使用

Intent intentBluetooth = new Intent();
intentBluetooth.setAction(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);
startActivity(intentBluetooth);

蓝牙设置与所有其他系统设置(应用程序管理器,Wi-Fi等)一起显示。我想将用户限制为仅限蓝牙设置而不是其他任何内容(例如上面的答案中的Wi-Fi)。

com.android.settings.bluetooth包有3种不同的活动,但它们都不适合我的需要。有没有办法让蓝牙获得与Wi-Fi类似的系统活动?

1 个答案:

答案 0 :(得分:0)

您正在使用的代码工作得很好。它可能取决于设备操作系统的具体实现。