Android progress bar: Percentage is not shown [dup

2019-07-02 01:33发布

This question already has an answer here:

Sorry i am new in Android and have 2 questions about my progress bar:

1- I am going to create my progress bar something like enter image description here Which style should i choose?

2-Currently my progress bar doesn't show the percentage of progress? Why?

progress bar XML:

  <ProgressBar
         android:id="@+id/progressBar"
         style="?android:attr/progressBarStyleHorizontal"
         android:layout_width="0dip"
         android:layout_height="100dp"
         android:padding="10dip"
         android:layout_margin="4dip"
         android:layout_weight="1"  />

Java code:

   mProgressBar = (ProgressBar)findViewById(R.id.progressBar);
   mProgressBar.setProgress(avg);          

1条回答
甜甜的少女心
2楼-- · 2019-07-02 02:02

The best tutorial for your reference is here

查看更多
登录 后发表回答