位置: 编程技术 - 正文

android 水平progressBar动态加载(Android 水平居中)

编辑:rootadmin

推荐整理分享android 水平progressBar动态加载(Android 水平居中),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:Android 水平居中,Android 水平布局,Android 水平滚动不显示子视图,Android 水平换行,Android 水平换行,Android 水平居中,Android 水平居中,Android 水平布局,内容如对您有帮助,希望把文章链接给更多的朋友!

当你需要动态显示一个progressBar时,动态显示进度,并在右侧显示加载进度,请参考下面代码:

重写写布局

public class LineProgressBar extends View {private Paint paint;private int lineColor;private int lineProgressColor;private int textColor;private float textSize;private float textWidth;private float textMargin;private float lineHeight;private int max;private int progress = 0;private RectF pLine, bLine;private int progressOne;public LineProgressBar(Context context) {this(context, null);}public LineProgressBar(Context context, AttributeSet attrs) {this(context, attrs, 0);}public LineProgressBar(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);progressOne = 0;paint = new Paint();TypedArray mTypedArray = context.obtainStyledAttributes(attrs,R.styleable.LineProgressBar);// 获取自定义属性和默认&#;lineColor = mTypedArray.getColor(R.styleable.RoundProgressBar_lineColor, Color.RED);lineHeight = mTypedArray.getDimension(R.styleable.RoundProgressBar_lineHeight, );lineProgressColor = mTypedArray.getColor(R.styleable.RoundProgressBar_lineProgressColor, Color.GREEN);textColor = mTypedArray.getColor(R.styleable.RoundProgressBar_textColor, Color.GREEN);textSize = mTypedArray.getDimension(R.styleable.RoundProgressBar_textSize, );textWidth = mTypedArray.getDimension(R.styleable.RoundProgressBar_textWidth, );textMargin = mTypedArray.getDimension(R.styleable.RoundProgressBar_textMargin, 5);max = mTypedArray.getInteger(R.styleable.RoundProgressBar_max, );mTypedArray.recycle();pLine = new RectF();}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);float width = getWidth();float height = getHeight();float margin = (height - lineHeight)/2;float drawHeight = lineHeight &#; margin;if(bLine == null) bLine = new RectF(0, margin, width-textWidth-textMargin, drawHeight);paint.setColor(lineColor); // 设置背景颜色paint.setStyle(Paint.Style.FILL); // 设置填充paint.setAntiAlias(true); // 消除锯齿canvas.drawRoundRect(bLine, 5, 5, paint); //画进度背景paint.setStrokeWidth(0);paint.setColor(textColor);//设置字体颜色paint.setTextSize(textSize);//设置字体大小paint.setTypeface(Typeface.DEFAULT); // 设置字体int percent = (int) (((float) progressOne / (float) max) * ); canvas.drawText(percent &#; "%", width - textWidth - textMargin, height, paint); // 画出进度百分比paint.setColor(lineProgressColor);//设置进度颜色pLine.set(0, margin, progressOne*(width-textWidth-textMargin)/max, drawHeight);canvas.drawRoundRect(pLine, 5, 5, paint);//画进度if (progressOne < progress) {//循环画invalidate();progressOne&#;&#;;}}public synchronized int getMax() {return max;}public synchronized void setMax(int max) {if (max < 0) {throw new IllegalArgumentException("max not less than 0");}this.max = max;}public synchronized int getProgress() {return progress;}public synchronized void setProgress(int progress) {if (progress < 0) {throw new IllegalArgumentException("progress not less than 0");}if (progress > max) {progress = max;}if (progress <= max) {this.progress = progress;progressOne = 0;postInvalidate();}}public int getTextColor() {return textColor;}public void setTextColor(int textColor) {this.textColor = textColor;}public float getTextSize() {return textSize;}public void setTextSize(float textSize) {this.textSize = textSize;}}

用到的其他代码:

<declare-styleable name="LineProgressBar"> <attr name="textColor" format="color" /> <attr name="textSize" format="dimension" /> <attr name="max" format="integer"></attr> <attr name="textIsDisplayable" format="boolean"></attr> <attr name="lineColor" format="color" /> <attr name="lineHeight" format="dimension" /> <attr name="lineProgressColor" format="color" /> <attr name="textWidth" format="dimension" /> <attr name="textMargin" format="dimension" /> </declare-styleable>

android 水平progressBar动态加载(Android 水平居中)

使用方式:xml

<....LineProgressBar android:id="@&#;id/details_line_progress" android:layout_width="match_parent" android:layout_height="dp" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android_custom:lineColor="@color/whitebl" android_custom:lineHeight="5dp" android_custom:lineProgressColor="@color/title_color" android_custom:max="" android_custom:textColor="@color/title_color" android_custom:textMargin="5dp" android_custom:textSize="sp" android_custom:textWidth="dp" ></....LineProgressBar>

使用方式:代码

LineProgressBar progress;

....//初始化

progress.setProgress();

关于获取本机ip的问题 最经在做项目的时候发现一个问题,我使用手机获取手机在一个局域网内的ip的时候出现了获取ip出错的问题,我使用的方法是://获取本机IPpublicstaticStr

Android学习 - 自定义输入法 输入法的例子和源代码看了不少时间了,看得头很晕,很郁闷。静下心来把整个代码想了一遍,其实大部分代码都在处理绘制界面,以及事件的处理,

文章标题 使用Chrome来调试你的AndroidApp个人一直对Chrome情有独钟,Chrome除了更快之外,对开发者的支持更友好。内置强大的DeveloperTools,相信Web开发简直爱不释手

标签: Android 水平居中

本文链接地址:https://www.jiuchutong.com/biancheng/376668.html 转载请保留说明!

上一篇:Android 多图片情况下,发生内存溢出的解决办法(android图片库)

下一篇:关于获取本机ip的问题(获取本地ip地址失败)

  • 公司申报房产税 土地取得时间怎么写的
  • 金税四期的到来意味着什么
  • 专票如何开具
  • 餐饮业税负上升有什么原因
  • 民营非营利企业会计分录大全
  • 小规模纳税人未开票收入填在哪里
  • 预缴纳个人所得税
  • 利息保障倍数计算公式资本化利息
  • 物业公司付电业公司的电费如何做账务处理?
  • 托收承付销售货物什么意思
  • 资本公积转增股本什么意思
  • 进出口货物买卖合同
  • 一般纳税人开普票税率是多少
  • 小规模纳税人增值税税率
  • 退税入其他收益需要再缴税吗
  • 为什么盈利的企业也有可能发生债务危机
  • 销售折扣和销售折让的账务处理
  • 本月没开发票怎样报税
  • 分期开发是什么意思
  • 申请小型微利企业
  • 代垫资金的代购是什么
  • 管理员已阻止你运行此应用 win10
  • 退税账务处理分录
  • 无法启动个人热点iphone
  • KunlunPlatform.exe是什么进程?KunlunPlatform.exe是安全的程序吗?
  • linux怎么更改账户名
  • 不用指令
  • lstm多对多
  • php动态页面实例
  • 银行罚息可不可以扣除
  • 汽车购置税计算公式
  • 加计扣除减免政策
  • php 带cookie post
  • 少数股东权益贷方表示什么意思
  • 调频连续波雷达
  • 税务自查报告要盖什么章
  • 销售佣金分录
  • 固定资产停止使用
  • 手工账结转
  • 如何补缴以前年度的税
  • dedecms安装步骤
  • 帝国cms到底好不好
  • 劳务分包收入交什么税
  • 资质平移后以前的工程怎么办
  • 海关缴款书上完税价格含增值税吗
  • 筹建期发生的费用会计分录
  • short int、long、float、double使用问题说明
  • 消费税是怎样征收的
  • 薪酬范围怎么写
  • 收到发票应如何处理
  • 行政单位收取现金的规定
  • 软件产品销售合同范本
  • 企业会计制度对固定资产无入账价值怎么入账
  • 营改增后物业公司账务处理
  • 原材料暂估入库成本结转处理
  • 新旧收入准则对比区别表
  • 新成立公司会计未来规划
  • 彻底清除硬盘中的文件
  • windows xp打开服务
  • ubuntu系统如何安装qq
  • redhat语言设置中文
  • win7每次开机选系统
  • winxp关机立马自动重启
  • linux中的ssh命令
  • window8系统安装步骤
  • 快速关机的快捷方式
  • pkg-config命令
  • 如何判断肾虚阴虚阳虚
  • unity游戏开发软件
  • js中concat的用法
  • jquery 遍历
  • 简单的比较
  • 安卓app活动
  • 国家税务总局在哪
  • 城市配套费需要什么资料
  • 未缴税税务说明书
  • 重庆市电子税务局官网登录入口
  • 广东省广州市国家安全局
  • 河源市人民医院上班时间
  • 江苏省无锡市国4车辆报废新规定
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设