gpt4 book ai didi

android - 如何显示具有水平不确定样式的 ContentLoadingProgressBar

转载 作者:太空宇宙 更新时间:2023-11-03 12:50:29 28 4
gpt4 key购买 nike

我正在尝试使用 ContentLoadingProgressBar 实现进度条的水平不确定样式。下面是xml布局

 <android.support.v4.widget.ContentLoadingProgressBar
android:id="@+id/pbar_Cloud"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_gravity="bottom"
android:visibility="visible" />

进度条显示为没有进度的空水平线。通过设置

style="?android:attr/progressBarStyleLarge"

循环不确定进度显示良好。我错过了什么,我什至尝试过

ContentLoadingProgressBar bar = (ContentLoadingProgressBar) findViewById(R.id.pbar_Cloud);
bar.setActivated(true);
bar.show();

仍然没有运气。

最佳答案

我知道很久以前有人问过这个问题,但万一其他人遇到同样的问题:

您只需要将 android:indeterminate="true" 添加到您的 xml 中:

<android.support.v4.widget.ContentLoadingProgressBar
android:id="@+id/pbar_Cloud"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_gravity="bottom"
android:visibility="visible"
android:indeterminate="true"/>

希望对您有所帮助!

更新:

对于那些迁移到 AndroidX 的人,只需更新您的标签即可使用

<androidx.core.widget.ContentLoadingProgressBar
...
android:indeterminate="true"/>

关于android - 如何显示具有水平不确定样式的 ContentLoadingProgressBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32284220/

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