大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在布局中
创新互联专注于灯塔企业网站建设,成都响应式网站建设公司,商城网站定制开发。灯塔网站建设公司,为灯塔等地区提供建站服务。全流程定制网站,专业设计,全程项目跟踪,创新互联专业和态度为您提供的服务
//也可以设置布局中的attr属性
使用方法
//设置类型
pb_1.setProgressType(ProgressBarUtils.ProgressType.COUNT);
//设置圆形的填充颜色
pb_1.setInCircleColor(getResources().getColor(R.color.redTab));
//设置外部轮廓的颜色
pb_1.setOutLineColor(getResources().getColor(R.color.grayLine));
//设置进度监听
pb_1.setCountdownProgressListener(1, progressListener);
//设置外部轮廓的颜色
pb_1.setOutLineWidth(2);
//设置进度条线的宽度
pb_1.setProgressLineWidth(5);
//设置进度
pb_1.setProgress(60);
//设置倒计时总时间
pb_1.setTimeMillis(3000);
//设置进度条颜色
pb_1.setProgressColor(getResources().getColor(R.color.colorPrimary));
//开始
pb_1.start();
//暂停
pb_1.stop();
//重新开始
pb_1.reStart();
在布局中
代码调用
bar1 = (NumberProgressbar) findViewById(R.id.bar1);
//设置倒计时总时间
bar1.setTimeMillis(10000);
//设置最大进度条的值
bar1.setMax(100);
//设置进度条文本的颜色
bar1.setProgressTextColor(this.getResources().getColor(R.color.colorAccent));
//设置进度条文本的大小
bar1.setProgressTextSize(ProgressBarUtils.sp2px(this,14));
//设置百分比文字内容是否可见
bar1.setNumberTextVisibility(ProgressBarUtils.NumberTextVisibility.Visible);
//设置百分比进度条的高度
bar1.setReachedBarHeight(10);
//设置未更新百分比进度条的高度
bar1.setUnreachedBarHeight(10);
//设置百分比进度条的颜色
bar1.setReachedBarColor(this.getResources().getColor(R.color.redTab));
//设置未更新百分比进度条的颜色
bar1.setUnreachedBarColor(this.getResources().getColor(R.color.blackText2));
//设置百分比进度条的监听
bar1.setOnProgressBarListener(new OnNumberProgressListener() {
@Override
public void onProgressChange(int current, int max) {
}
});
//开始
bar1.start();
//暂停
bar1.stop();
bar_percent = (RingProgressBar) findViewById(R.id.bar_percent);
//设置进度
bar_percent.setProgress(0);
//设置更新进度条颜色
bar_percent.setDotColor(this.getResources().getColor(R.color.colorAccent));
//设置未更新部分的进度条颜色
bar_percent.setDotBgColor(this.getResources().getColor(R.color.blackText));
//设置百分比文字颜色
bar_percent.setPercentTextColor(this.getResources().getColor(R.color.blackText1));
//设置百分比文字大小
bar_percent.setPercentTextSize(ProgressBarUtils.dp2px(this,16.0f));
//设置展示的类型
bar_percent.setShowMode(ProgressBarUtils.RingShowMode.SHOW_MODE_PERCENT);
//设置单位的文字内容
bar_percent.setUnitText("%");
//设置单位的文字大小
bar_percent.setUnitTextSize(ProgressBarUtils.dp2px(this,16.0f));
//设置单位的文字颜色
bar_percent.setUnitTextColor(this.getResources().getColor(R.color.blackText1));
/**
* 验证进度。
*
* @param progress 你要验证的进度值。
* @return 返回真正的进度值。
*/
private int validateProgress(int progress) {
if (progress > 100){
progress = 100;
} else if (progress < 0){
progress = 0;
}
return progress;
}
/**
* 当自定义控件销毁时,则调用该方法
*/
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
stop();
}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.