Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在围绕 SDK 示例中的 Android 蓝牙聊天示例时遇到问题。每当我连接到设备并建立连接时,ConnectedThread 正在执行,一切都很顺利,系统对话框弹出,要求我在 PIN 中打勾以进行配对。但是,当我单击该部分对话框上的取消按钮时,我想对此做出反应。由于我依赖并且也想依赖非自定义对话框,我真的想知道如何在该特定对话框上获取关闭事件。
问候,西蒙
只需在您希望对话框关闭的代码中添加这一行。
Intent intent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); sendBroadcast(intent);
您可以通过编程方式进行配对以避免这种情况。您可以参考Link1和Link2