gpt4 book ai didi

android - ContentLoadingProgressBar的实际使用

转载 作者:IT老高 更新时间:2023-10-28 21:40:37 30 4
gpt4 key购买 nike

我正在浏览 android 的开发者网站,我发现了一个名为 ContentLoadingProgressBar 的类。看到这个类,我心里想出了一些问题。如果有人回答我的问题,那就太好了。

  1. 普通ProgressBarContentLoadingProgressbar有什么区别?
  2. ContentLoadingProgressBar 的实际用途是什么?
  3. 我们可以根据我们的要求显示/隐藏这个进度条吗?

  4. 如何自定义此进度条的样式?

感谢您提前提供的帮助。如果有人使用代码和示例来解释它会很棒。谢谢。

最佳答案

这是我的答案!

What is the difference between Normal ProgressBar and ContentLoadingProgressbar?

ContentLoadingProgressbar 在使用 hide() 显示之前等待最短时间被关闭,例如 0.5 秒内。所以即使是 show() 被调用这可以在它出现在屏幕上之前被关闭。

What is the practical usage of ContentLoadingProgressBar

它可以防止您在“幼稚”实现中看到的非常快速闪烁的东西。

Can we show/hide this progressbar according to our requirement

是的

How can I custom style this progressBar

<android.support.v4.widget.ContentLoadingProgressBar
android:id="@+id/address_looking_up"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:visibility="visible" />

将样式替换为 android:theme https://stackoverflow.com/a/38282149/5188159

关于android - ContentLoadingProgressBar的实际使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41628693/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com