私は1つのボタンで再生と一時停止のアクションを追加しようとしています これは私のコードです。1つのボタンに複数のアクションを追加するにはどうすればいいですか?
fab_play_pause.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
timerHasStarted = true;
countDownTimer.start();
Resources res = getResources();
Drawable drawable = res.getDrawable(R.drawable.custom_progressbar_drawable);
final ProgressBar mProgress = (ProgressBar) rootView.findViewById(R.id.circularProgressbar);
mProgress.setProgress(0); // Main Progress
mProgress.setSecondaryProgress(100); // Secondary Progress
mProgress.setMax(100); // Maximum Progress
mProgress.setProgressDrawable(drawable);
mProgress.setRotation(0);
ObjectAnimator animation = ObjectAnimator.ofInt(mProgress, "progress", 0, 100);
animation.setDuration(startTime);
animation.setInterpolator(new DecelerateInterpolator());
animation.start();
}
});
あなたの状態を確認して、状態に関するアクションを実行します。他の場合は単純です。 –