对警报线程池的警报线程_您可能对警报对话框不了解的地方

2023-11-07 00:59

本文主要是介绍对警报线程池的警报线程_您可能对警报对话框不了解的地方,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

对警报线程池的警报线程

This seemingly simple UI element has a lot of hidden features. If you have ever developed an application, you probably have used it.

这个看似简单的UI元素具有许多隐藏功能。 如果您曾经开发过应用程序,则可能已经使用过。

An AlertDialog’s main function is to notify users of something that is going to happen that requires their immediate attention and an action to be made on their end. The uses of an AlertDialog are numerous and could range from:

AlertDialog的主要功能是通知用户即将发生的事情,这些事情需要他们的立即注意并最终采取措施。 AlertDialog的用途很多,范围可能是:

  • Ask the user to grant permission for your application to do something (location)

    要求用户授予您的应用程序执行某项操作的权限(位置)
  • Alert the user to an action that is about to take place (remove photo)

    提醒用户即将执行的操作(删除照片)
  • Notify the user of what is going on (feature not available)

    通知用户正在发生的事情(功能不可用)

What this article will not cover is the basic use cases and construction of an AlertDialog, but it will cover some more advanced uses and caveats of this UI element.

本文将不介绍AlertDialog的基本用例和构造,但将介绍此UI元素的一些更高级的用法和注意事项。

For this article, I will be showing examples written in Kotlin.

对于本文,我将展示用Kotlin编写的示例。

AlertDialog标题的长度 (Length of AlertDialog’s Title)

Setting the title on an AlertDialog is easy. Using the following method,

在AlertDialog上设置标题很容易。 使用以下方法,

builder.setTitle(title), //where title is a CharSequence. 
setTitle
setTitle

What is not apparent from the code, is that the dialog’s title is limited to only two lines. Meaning, that if you write a long title, it will be truncated and you will see three dots (…) being displayed signifying the sentence is longer than it appears.

从代码中看不出来的是,对话框的标题仅限于两行。 意思是,如果您写了一个长标题,它将被截断,并且您将看到显示三个点(…),表示该句子的长度超过了它的显示长度。

Image for post
Truncated Title
标题被截断

But what If we needed more room for our title? We can use the method setCustomTitle which receives a View as a parameter.

但是,如果我们需要更多的标题空间呢? 我们可以使用setCustomTitle方法,该方法接收一个View作为参数。

setCustomTitle
setCustomTitle

Using the above, we can easily create a TextView and style it to our liking to get the desired result.

使用上面的代码,我们可以轻松地创建一个TextView并根据自己的喜好对其进行样式设置,以获得所需的结果。

An AlertDialog with a custom title
具有自定义标题的AlertDialog
Image for post
Our Result
我们的结果

中立按钮 (The Neutral Button)

While you may be familiar with the approve or reject buttons associated with the AlertDialog, there is also one other type of button available. That button is the NeutralButton. What is special about this button is that it signals to the user that if he/she makes this choice, nothing will be affected.

尽管您可能熟悉与AlertDialog相关的批准或拒绝按钮,但还有另一种类型的按钮可用。 该按钮是NeutralButton 。 此按钮的特殊之处在于,它向用户发出信号,如果他/她做出了此选择,则不会受到任何影响。

Neutral Button
中立按钮

If you take another look at the screenshot above, you can see that the button with the Dismiss text is a neutral button.

如果您再看一下上面的屏幕截图,您会看到带有“关闭”文本的按钮是一个中性按钮。

物品或讯息 (Items Or Message)

After setting the title, we can set the message of our alert dialog. Again, what if we wanted the user to select something in our alert dialog (out of a list)? For that, we can use the setItems method:

设置标题后,我们可以设置警报对话框的消息。 同样,如果我们希望用户在警报对话框中(从列表中)选择某些内容,该怎么办? 为此,我们可以使用setItems方法:

setItems
setItems

Or we can use the setSingleChoiceItems method:

或者我们可以使用setSingleChoiceItems方法:

Here, we come to a fork in the road, because we will have to choose what is more important to us: a list of items or the alert dialog’s message. We can’t have both. To quote the documentation:

在这里,我们走上了一条路,因为我们必须选择对我们更重要的内容:项目列表或警报对话框的消息。 我们不能两者兼得。 引用文档:

…Because the list appears in the dialog’s content area, the dialog cannot show both a message and a list…

…因为该列表出现在对话框的内容区域中,所以该对话框无法同时显示消息和列表…

When using an items list, it is a good idea to use an adapter to handle the interaction and management of our list of items. Below is a simple demonstration of just how to achieve that.

使用项目列表时,最好使用适配器来处理项目列表的交互和管理。 以下是如何实现该目标的简单演示。

MainActivity.kt
MainActivity.kt
AlertDialogListAdapter.kt
AlertDialogListAdapter.kt
list_item.xml
list_item.xml
Image for post
List of items in AlertDialog
AlertDialog中的项目列表

If you don’t want to deal with an adapter, you can use the setSingleChoiceItems method like so:

如果您不想使用适配器,则可以使用setSingleChoiceItems方法,如下所示:

Using SetSingleChoiceItems
使用SetSingleChoiceItems

And you’ll get the following:

您将获得以下信息:

Image for post

图像警报 (Image Alert)

What if we wanted to have a message and an image in our AlertDialog? We can achieve that by using the setView method:

如果我们想在AlertDialog中显示消息和图像怎么办? 我们可以通过使用setView方法来实现:

setView
setView
MainActivity.kt
MainActivity.kt
custom_view.xml
custom_view.xml
Image for post
Our Custom View
我们的自定义视图

🙌 In fact, you may have noticed that even for the previous problem, we can use a custom view that has a listview and a textview to handle the scenario of a message and a list of items.

🙌实际上,您可能已经注意到,即使对于先前的问题,我们也可以使用具有listview和textview的自定义视图来处理消息和项目列表的情况。

Those are just some of the more allusive possibilities you have with the AlertDialog. If you have more examples like this, feel free to share them in the comments.

这些只是您使用AlertDialog所具有的更多暗示性可能性。 如果您有更多类似的示例,请随时在评论中分享。

You can see all the examples shown in this article in an application I created at this GitHub repository.

您可以在我在GitHub存储库中创建的应用程序中看到本文显示的所有示例。

翻译自: https://proandroiddev.com/what-you-might-not-know-about-the-alertdialog-2bdc55f3d907

对警报线程池的警报线程


http://www.taodudu.cc/news/show-8172790.html

相关文章:

  • 7-9 红色警报 (25分)
  • PTA-L2-013 红色警报 (25分)
  • Qt去除未使用变量警报
  • 今天您手机上的“总统警报”弹出窗口是什么?
  • 51单片机警报装置
  • SQL Server代理警报
  • 智慧家——火灾警报
  • 美的冲刺港股:年营收3457亿 不缺钱,但资本运作频频
  • 07胡润IT富豪榜发布:李彦宏成IT首富
  • 设置 google 搜索引擎 不跳转 对应 地区语言页面
  • 基本过程: 小区搜索
  • 地区选择控件的展示和使用
  • 各搜索引擎高级搜索备忘
  • Google搜索指定地区,不跳转
  • elementUI的el-cascader实现省市区搜索
  • vue3实现模糊搜索功能
  • 百度地图---poi地区搜索
  • 百度的地区搜索是如何实现的?
  • C语言枚举打桩
  • 单元测试PowerMockito打桩失效
  • linux库打桩
  • go stub打桩测试
  • 【流量分析】Godzilla分析
  • (纪中)2416. Berry Picking【数学】
  • 2020寒假【gmoj2416】【Berry Picking】
  • 牛客练习赛62(基于官方题解的补题 A ~ D)
  • CQOI2007矩形
  • 一篇文章带你学完链表基础(C语言)
  • 好学易懂 从零开始的插头DP(二)
  • 航空插头在端接的时候我们需要注意哪些问题呢?
  • 这篇关于对警报线程池的警报线程_您可能对警报对话框不了解的地方的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



    http://www.chinasem.cn/article/360175

    相关文章

    Spring Boot3虚拟线程的使用步骤详解

    《SpringBoot3虚拟线程的使用步骤详解》虚拟线程是Java19中引入的一个新特性,旨在通过简化线程管理来提升应用程序的并发性能,:本文主要介绍SpringBoot3虚拟线程的使用步骤,... 目录问题根源分析解决方案验证验证实验实验1:未启用keep-alive实验2:启用keep-alive扩展建

    浅谈mysql的sql_mode可能会限制你的查询

    《浅谈mysql的sql_mode可能会限制你的查询》本文主要介绍了浅谈mysql的sql_mode可能会限制你的查询,这个问题主要说明的是,我们写的sql查询语句违背了聚合函数groupby的规则... 目录场景:问题描述原因分析:解决方案:第一种:修改后,只有当前生效,若是mysql服务重启,就会失效;

    一文带你了解SpringBoot中启动参数的各种用法

    《一文带你了解SpringBoot中启动参数的各种用法》在使用SpringBoot开发应用时,我们通常需要根据不同的环境或特定需求调整启动参数,那么,SpringBoot提供了哪些方式来配置这些启动参... 目录一、启动参数的常见传递方式二、通过命令行参数传递启动参数三、使用 application.pro

    Java终止正在运行的线程的三种方法

    《Java终止正在运行的线程的三种方法》停止一个线程意味着在任务处理完任务之前停掉正在做的操作,也就是放弃当前的操作,停止一个线程可以用Thread.stop()方法,但最好不要用它,本文给大家介绍了... 目录前言1. 停止不了的线程2. 判断线程是否停止状态3. 能停止的线程–异常法4. 在沉睡中停止5

    一文带你深入了解Python中的GeneratorExit异常处理

    《一文带你深入了解Python中的GeneratorExit异常处理》GeneratorExit是Python内置的异常,当生成器或协程被强制关闭时,Python解释器会向其发送这个异常,下面我们来看... 目录GeneratorExit:协程世界的死亡通知书什么是GeneratorExit实际中的问题案例

    Java捕获ThreadPoolExecutor内部线程异常的四种方法

    《Java捕获ThreadPoolExecutor内部线程异常的四种方法》这篇文章主要为大家详细介绍了Java捕获ThreadPoolExecutor内部线程异常的四种方法,文中的示例代码讲解详细,感... 目录方案 1方案 2方案 3方案 4结论方案 1使用 execute + try-catch 记录

    Spring Boot 中正确地在异步线程中使用 HttpServletRequest的方法

    《SpringBoot中正确地在异步线程中使用HttpServletRequest的方法》文章讨论了在SpringBoot中如何在异步线程中正确使用HttpServletRequest的问题,... 目录前言一、问题的来源:为什么异步线程中无法访问 HttpServletRequest?1. 请求上下文与线

    在 Spring Boot 中使用异步线程时的 HttpServletRequest 复用问题记录

    《在SpringBoot中使用异步线程时的HttpServletRequest复用问题记录》文章讨论了在SpringBoot中使用异步线程时,由于HttpServletRequest复用导致... 目录一、问题描述:异步线程操作导致请求复用时 Cookie 解析失败1. 场景背景2. 问题根源二、问题详细分

    Java多线程父线程向子线程传值问题及解决

    《Java多线程父线程向子线程传值问题及解决》文章总结了5种解决父子之间数据传递困扰的解决方案,包括ThreadLocal+TaskDecorator、UserUtils、CustomTaskDeco... 目录1 背景2 ThreadLocal+TaskDecorator3 RequestContextH

    java父子线程之间实现共享传递数据

    《java父子线程之间实现共享传递数据》本文介绍了Java中父子线程间共享传递数据的几种方法,包括ThreadLocal变量、并发集合和内存队列或消息队列,并提醒注意并发安全问题... 目录通过 ThreadLocal 变量共享数据通过并发集合共享数据通过内存队列或消息队列共享数据注意并发安全问题总结在 J