Android progress bar: Percentage is not shown [duplicate]

若如初见. 提交于 2020-01-04 02:47:27

问题


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

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:


The best tutorial for your reference is here



来源:https://stackoverflow.com/questions/16977009/android-progress-bar-percentage-is-not-shown

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!