Multi Colour progress bar

前端 未结 2 1962
我在风中等你
我在风中等你 2020-12-04 03:48

I want to create a progress bar (intermediate progress bar) similar to gmail app which change colours.I am able to this by keeping and updating progress_indeterminate_horizo

2条回答
  •  一整个雨季
    2020-12-04 04:10

    This is what you are looking for. Add this library in your project and you'll be able to use it.

    Then you'll be able to use it as a normal processbar. Example:

    private SmoothProgressBar  mProgressBar;
    

    OnCreate:

    mProgressBar = (SmoothProgressBar) findViewById(R.id.progressbar);
    mProgressBar.progressiveStart();
    

    OnPause:

    mProgressBar.progressiveStop();
    

提交回复
热议问题