怎么在Android中設(shè)置ProgressBar進(jìn)度?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
津南網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項目制作,到程序開發(fā),運營維護(hù)。創(chuàng)新互聯(lián)于2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。布局文件:
Activity:
public class MainActivity extends AppCompatActivity { private ProgressBar mProgressBar; TextView mtv_bar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mProgressBar = (ProgressBar) findViewById(R.id.bar); mtv_bar = (TextView) findViewById(R.id.tv_bar); setAnimation(mProgressBar, 100); } private void setAnimation(final ProgressBar view, final int mProgressBar) { ValueAnimator animator = ValueAnimator.ofInt(0, mProgressBar).setDuration(5000); animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator valueAnimator) { view.setProgress((int) valueAnimator.getAnimatedValue()); } }); animator.start(); } private void setTvAnimation(final TextView view, final int mProgressBar) { ValueAnimator animator = ValueAnimator.ofInt(0, mProgressBar).setDuration(5000); animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator valueAnimator) { view.setText(String.valueOf(valueAnimator.getAnimatedValue())); } }); animator.start(); } public void show(View view) { setAnimation(mProgressBar, 100); } public void tvshow(View view){ setTvAnimation(mtv_bar,240); } }
關(guān)于怎么在Android中設(shè)置ProgressBar進(jìn)度問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。