欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

progressBar控件使用

程序员文章站 2024-02-05 20:40:22
...

progressBar是进度条控件,主要分为圆形以及水平进度条,水平进度条是确定的,可以看到水平进度,圆形进度条是不确定的,不知道什么时候完成,就一直在那里转。这两者最典型的例子就是文件拷贝可以用水平进度条看到文件拷贝的进度,圆形进度条则主要使用在网络连接上,不知道网络连接成功的时间,就一直在那里尝试连接,可以显示一直在那里转。

如下利用两个button控件进行加减水平进度条的实例:
效果图
progressBar控件使用
xml布局


```php
<?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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/activity_main">

    <Button
        android:id="@+id/id_inc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:text="进度条+"/>

    <Button
        android:id="@+id/id_dec"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="进度条-"/>

    <ProgressBar
        android:id="@+id/id_progress"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/id_inc"
        android:outlineSpotShadowColor="#ffff0000"/>

</RelativeLayout>

代码逻辑:


```java
package com.gentle.progressbar;

import android.os.Bundle;

import com.google.android.material.floatingactionbutton.FloatingActionButton;
import com.google.android.material.snackbar.Snackbar;

import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;

import android.util.Log;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.ProgressBar;

public class MainActivity extends AppCompatActivity {
    private Button btnInc;
    private Button btnDec;
    private ProgressBar progress;
    private int progressValue = 0;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        btnInc = (Button) findViewById(R.id.id_inc);
        btnInc.setOnClickListener(clickListener);

        btnDec = (Button) findViewById(R.id.id_dec);
        btnDec.setOnClickListener(clickListener);

        progress = (ProgressBar) findViewById(R.id.id_progress);

    }

    private void updateProgress(int value){

        if(value < 0 || value > 100)
            return;

        progress.setProgress(value);

    }

    private View.OnClickListener clickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            switch (v.getId()){
                case R.id.id_inc:
                {
                    progressValue+=10;
                }
                break;

                case R.id.id_dec:
                {
                    progressValue-=10;
                }
                break;

                default:
                    Log.e("test","clickListener id error");
                    break;
            }

            updateProgress(progressValue);

        }
    };

}