【发布时间】:2015-08-29 08:42:32
【问题描述】:
我正在尝试使用 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();
还是没有运气。
【问题讨论】: