在不同的編程中實(shí)現(xiàn)同一個(gè)效果的使用代碼和邏輯都有可能是多種多樣的,那么今天我們來說說“在Android中怎么使用Studio實(shí)現(xiàn)進(jìn)度條?”這個(gè)問題吧!
具體內(nèi)容如下:
效果圖:
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"
style="@android:style/Widget.ProgressBar.Horizontal"
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)是測(cè)試定時(shí)加長進(jìn)度條設(shè)計(jì)的。
在代碼中通過不一樣的方法實(shí)現(xiàn)了我們需要的內(nèi)容,相信在文章中我們對(duì)“在Android中怎么使用Studio實(shí)現(xiàn)進(jìn)度條?”這個(gè)問題的實(shí)現(xiàn)方法有了自己的了解,更多有關(guān)于安卓開發(fā)的內(nèi)容我們也能在W3Cschool中找到適合的知識(shí)進(jìn)行學(xué)習(xí)。