设置ProgressBar动态Android的宽度

时间:2014-03-14 09:30:31

标签: android android-progressbar

我动态使用ProgressBar。现在,我想根据其进度设置其宽度。

因为如果它的进展为10%则显示其宽度为10%,如果其进度为82%则显示其宽度为82%。

Layout.xml:

<ProgressBar
        android:id="@+id/pbAccuracy"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="20dp"
        android:layout_marginLeft="9dp"
        android:layout_toRightOf="@+id/tvTopic" />

我在xml文件中有RelativeLayout

1 个答案:

答案 0 :(得分:0)

使用描述http://www.mkyong.com/android/android-progress-bar-example/

的解决方案

哪里

 progressBar.setProgress(your start point);
 progressBar.setMax(progress end point); 

会帮你解决问题。