2
我試圖用ContentLoadingProgressBar實現水平不確定風格的進度條。下面是xml佈局如何顯示水平不確定風格的ContentLoadingProgressBar
<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();
仍然沒有運氣。