溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在Android中如何使用Studio實(shí)現(xiàn)進(jìn)度條

發(fā)布時(shí)間:2022-02-25 14:41:32 來源:億速云 閱讀:710 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹在Android中如何使用Studio實(shí)現(xiàn)進(jìn)度條,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

xml代碼

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".ProgressBarActivity">

    <ProgressBar
        android:id="@+id/pb_determinate"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        
        android:backgroundTint="@color/purple_200"

        android:progress="25"
        android:max="100"
        android:layout_centerVertical="true"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="ProgressBar"
        android:textSize="28sp"
        android:gravity="center"
        android:layout_below="@+id/pb_determinate"
        />
</RelativeLayout>

java代碼

package com.example.a18101352;

import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.widget.ProgressBar;

import java.util.Random;

public class MainActivity extends AppCompatActivity {


    private ProgressBar progressBar;
    private int maxProgress;
    private int currentProgress = 0;

    private Handler mHandler = new Handler(){
        /**
         * Subclasses must implement this to receive messages.
         *
         * @param msg
         */
        @Override
        public void handleMessage(@NonNull Message msg) {
            super.handleMessage(msg);
            switch (msg.what){
                case 0:
                    progressBar.setProgress(currentProgress);
                    break;
            }
        }
    };


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_progress_bar);
        progressBar = findViewById(R.id.pb_determinate);
        maxProgress = progressBar.getMax();
    }

    @Override
    protected void onStart(){
        super.onStart();
        new Thread() {

            private Random random;

            @Override
            public void run(){
                while(true){
                    try {
                        for(int i = 0; i < maxProgress; ++i){
                            //間隔一秒
                            Thread.sleep(1000);
                            random = new Random();
//                            currentProgress += 10;
//                            if(currentProgress > maxProgress){
//                                break;
//                            }
                            //獲取一個(gè)隨機(jī)數(shù)給到currentProgress然后顯示出來
                            currentProgress = random.nextInt(100);
                            mHandler.sendEmptyMessage(0);
                        }
                    }
                    catch (InterruptedException e){
                        e.printStackTrace();
                    }
                }
            }
        }.start();
    }
}

線程里的for循環(huán)可以去掉,循環(huán)是測試定時(shí)加長進(jìn)度條設(shè)計(jì)的。

以上是“在Android中如何使用Studio實(shí)現(xiàn)進(jìn)度條”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI