How to show a Horizontal Android Indeterminate Progress Bar

前端 未结 5 1405
伪装坚强ぢ
伪装坚强ぢ 2020-12-08 13:35

How to show an indeterminate horizontal progress bar in android? The animation of the progress bar should start from 0 to 100 and then go back from 100 to 0 continuously. I

5条回答
  •  佛祖请我去吃肉
    2020-12-08 13:50

    Use the method setIndeterminate of ProgressBar:

    android.widget.ProgressBar bar = new android.widget.ProgressBar(context);
    bar.setIndeterminate(true);
    

    But yeah, you could have found this pretty quickly in the developer docs.

    http://developer.android.com/reference/android/widget/ProgressBar.html#setIndeterminate%28boolean%29

提交回复
热议问题