微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ProgressBarWithText Android 进度条

程序名称:ProgressBarWithText

授权协议: Apache

操作系统: Android

开发语言: Java

ProgressBarWithText 介绍

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]);
    }
}

}

ProgressBarWithText 官网

http://git.oschina.net/qibin/ProgressBarWithText

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐