Android 进度条 ProgressBarWithText

码农软件 · 软件分类 · Android UI 组件 · 2019-04-26 16:13:01

软件介绍

ProgressBarWithText 是 Android 上带文本的进度条。

效果演示:

image

image

使用方法: 在布局文件配置:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:progress="http://schemas.android.com/apk/res/org.loader.progressbarwithtext"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
    <org.loader.progressbarwithtext.ProgressBarWithText
        android:id="@+id/progress"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:
layout
_marginTop="50dip"
        progress:textColor="#FFFF0000" />
</RelativeLayout>

只有一个属性:progress:textColor 指定文本颜色

在Activity中:

public class MainActivity extends Activity {
private ProgressBarWithText mProgress;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mProgress = (ProgressBarWithText) findViewById(R.id.progress);
    mProgress.setMax(100);

    new MyAsyncTask().execute();
}

class MyAsyncTask extends AsyncTask<Void, Integer, Void> {
    @Override
    protected Void doInBackground(Void... params) {
        for(int i=0;i<101;i++) {
            try {
                Thread.sleep(200);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

            publishProgress(i);
        }
        return null;
    }

    @Override
    protected void onProgressUpdate(Integer... values) {
        mProgress.setProgress(values[0]);
    }
}

}


本文地址:https://codercto.com/soft/d/4437.html

常用算法程序集

常用算法程序集

徐士良 编 / 清华大学 / 2004-1 / 48.00元

本书针对工程中常用的行之有效的算法而编写,其主要内容包括多项式的计算、复数运算、随机数的产生 、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数学变换与滤波、特殊函数的计算、排序和查找。 书中所有的算法均用C语言描述,并存放在一张光盘上。 本书可供广大科研人员、工程技术人员以及管理工作者阅读使用,也......一起来看看 《常用算法程序集》 这本书的介绍吧!

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具