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

android-如何以水平不确定的样式显示ContentLoadingProgressBar,第1张

概述我正在尝试使用ContentLoadingProgressBar实现进度条的水平不确定风格.下面是xml布局<android.support.v4.widget.ContentLoadingProgressBarandroid:id="@+id/pbar_Cloud"style="?android:attr/progressBarStyleHorizontal"

我正在尝试使用ContentLoadingProgressbar实现进度条的水平不确定风格.下面是xml布局

 <androID.support.v4.Widget.ContentLoadingProgressbar                androID:ID="@+ID/pbar_Cloud"                                androID:layout_wIDth="match_parent"                androID:layout_height="10dp"                androID:layout_gravity="bottom"                androID:visibility="visible" />

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

循环不确定的进度显示很好.我想念的是什么,我什至尝试过

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"                                androID:layout_wIDth="match_parent"                androID:layout_height="10dp"                androID:layout_gravity="bottom"                androID:visibility="visible"                 androID:indeterminate="true"/>

希望有帮助!

总结

以上是内存溢出为你收集整理的android-如何以水平不确定的样式显示ContentLoadingProgressBar全部内容,希望文章能够帮你解决android-如何以水平不确定的样式显示ContentLoadingProgressBar所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1089832.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存