How do I use Android ProgressBar in determinate mode?

后端 未结 2 559
半阙折子戏
半阙折子戏 2020-11-28 07:37

I am writing a media player and i would like to have a progress bar showing the progress of the song. I found the ProgressBar class, but all i can get on the screen is a cir

2条回答
  •  隐瞒了意图╮
    2020-11-28 08:25

    Programmatically:

    progressBar = new ProgressBar(activity, null, android.R.attr.progressBarStyleHorizontal);
    progressBar.setIndeterminate(false);
    

提交回复
热议问题