如何使用 Android 的(非模式)对话框?

发布于 2024-12-15 04:04:26 字数 1436 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫烠⑼条掵仅有一顆心 2024-12-22 04:04:26

是的,这是使用 Android 对话框的“通常和习惯”方式。您可以在侦听器中处理结果,请参阅对话框指南中的示例或文档中的日期选择器对话框示例

当您使用活动创建对话框时(您必须设置适当 活动的主题),您可以在对话框活动的侦听器中进行处理。或者,您可以将值返回到父活动并在 onActivityResult 回调中处理它们。

您在侦听器中运行的代码应该相当短且快速,因为它在主线程上运行。永远不要让用户等待!如果处理很耗时,请在后台进行。

Android 中模态对话框与非模态对话框的注意事项。默认情况下,所有对话框(以及显示为对话框的活动)都是模态的。您可以通过设置适当的窗口标志来创建无模式对话框(以及显示为对话框的活动)(有关更多详细信息,请参阅 问题和答案)。

Yes, that's the "usual and customary" way of working with Android dialogs. You process the results in listeners, see the examples in dialogs guide or date picker dialog sample in the documentation.

When you create the dialog with an activity (you have to set proper theme of the activity), you can do the processing in listeners in the dialog activity. Or you can return the values to the parent activity and process them in onActivityResult callback.

The code you run in the listeners should be rather short and quick because it runs on the main thread. Never let the user wait! If the processing is time consuming do it in a the background.

One note to modal vs. non-modal (modeless) dialogs in Android. By default all the dialogs (and the activities displayed as dialogs) are modal. You can create modeless dialogs (and activities displayed as dialogs) by setting proper window flags (for more details see this question and answer).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文