如何重启水平进度条

时间:2017-06-08 08:06:24

标签: android android-progressbar android-handler

我有一个水平进度条,显示从0到100的进度。我想要的是当它达到100时再次从0重新启动进度条。我将在Fragmentdialog中显示它。现在我正在检查活动本身。怎么做?

    public class MainActivity extends AppCompatActivity{
    private Button startbtn, stopbtn;
    ProgressBar pb;
    private TextView progressTxt;

    int progressBarValue = 0;
    Handler handler = new Handler();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);


        setContentView(R.layout.activity_main);
        show = new CShowProgress(MainActivity.this);

        btn = (Button)findViewById(R.id.btn);
        startbtn = (Button)findViewById(R.id.startbtn);
        stopbtn = (Button)findViewById(R.id.stopbtn);
        pb = (ProgressBar)findViewById(R.id.progressBar);
        progressTxt = (TextView)findViewById(R.id.progressTxt);

        startbtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                myprogress(true);
            }
        });

        stopbtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                myprogress(false);
            }
        });
    }

    private void myprogress(final Boolean isStart){
        handler = new Handler()
        {
            public void handleMessage(android.os.Message msg)
            {
                if(isStart && progressBarValue<100)
                {
                    progressBarValue+=1;
                    pb.setProgress(progressBarValue);
                    progressTxt.setText(String.valueOf(progressBarValue));

                    handler.sendEmptyMessageDelayed(0, 100);
                }

            }
        };

        handler.sendEmptyMessage(0);
    }
}

2 个答案:

答案 0 :(得分:1)

我认为这段代码适用于您的用例:

private void myprogress(final Boolean isStart) {
  handler = new Handler() {
    public void handleMessage(Message msg) {
      if (isStart && progressBarValue < 100) {
          ...
      } else if (isStart) {
        // progressBarValue is equal to 100
        // make it zero and do the same thing again
        progressBarValue = 0;
        progressBarValue += 1;
        pb.setProgress(progressBarValue);
        progressTxt.setText(String.valueOf(progressBarValue));

        handler.sendEmptyMessageDelayed(0, 100);
      }
    }
  };

  handler.sendEmptyMessage(0);
}

答案 1 :(得分:0)

首先,您应该使用计数器机制(运行延迟处理程序,计时器,线程或其他东西)来定期检查当前进度。

 (progressTxt.getProgress == 100)

会做到这一点。

另一种方法是使用this answer