Android自定义View之如期相遇的百分比进度条RatioProgress

本文主要是介绍Android自定义View之如期相遇的百分比进度条RatioProgress,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  • 需求
    • 简述
    • 实际应用效果图
    • Demo效果图
  • 分析
    • 自定义View的基本步骤
    • 自定义View属性
    • RatioProgress分析
    • 布局以及代码中的使用
      • 布局文件
      • 实际java代码中的控制
  • 其它
    • Demo下载
    • 参考链接

需求

简述:

当进入比赛详情页面时,根据点赞数按比例分割整个屏幕宽度,这个过程以动态进度条的形式显示

实际应用效果图:

这里写图片描述

Demo效果图:

这里写图片描述

分析

自定义View的基本步骤:

  • 自定义View的属性
  • 在View的构造方法中获得我们自定义的属性
  • 重写onMesure(非必须,大部分情况下需要)
  • 重写onDraw

自定义View属性:

在res/values/ 下建立一个attrs.xml ,在里面定义我们的属性和声明我们的整个样式,format是指该属性的取值类型

<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="RatioProgress"><attr name="direction" format="string" /><attr name="progressColor" format="color" /></declare-styleable></resources>

这里,我根据需求定义了两个属性,分别为direction和progressColor

  • direction表示进度条的绘制方向,有两个值,分别为“left”和“right”

“left”表示从左到右进行显示,“right”表示从右向左进行显示

  • progressColor表示进度条的显示背景颜色

RatioProgress分析:

  • 通过rectBgBounds 绘制背景矩形,进行占位,背景设置为透明的
  • 通过rectProgressBounds来绘制进度条,背景颜色就是通过如下自定义属性进行设置

    sus:progressColor="@color/CommonTextSelect"
  • bgPaint和progressPaint分别为绘制背景和进度条的画笔

关键步骤之重写onDraw方法

    @Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);canvas.drawRect(rectBgBounds, bgPaint);if (TextUtils.equals(direction, "left")) {rectProgressBounds = new RectF(0, 0, progress, layout_height);} else if (TextUtils.equals(direction, "right")) {rectProgressBounds = new RectF(getWidth() - progress, 0, getWidth(), layout_height);}else{rectProgressBounds = new RectF(0, 0, progress, layout_height);}canvas.drawRect(rectProgressBounds, progressPaint);}
  • 这里根据direction属性来设置rectProgressBounds 的坐标位置

  • 我在 setupBounds()中通过start方法开启一个线程

    final Runnable r = new Runnable() {public void run() {running = true;Log.e("thread", "progress="+progress);Log.e("thread", "getWidth()="+getWidth());while (progress < getWidth()) {incrementProgress();//progress++;try {Thread.sleep(sleepDelay);} catch (InterruptedException e) {e.printStackTrace();}}running = false;}};public void start(){if (!running) {progress = 0;Thread s = new Thread(r);s.start();}}
  • 并通过incrementProgress方法递增progress,然后再通过handler发消息不断进行绘制
   /*** Increment the progress by 1 (of 100)*/public void incrementProgress() {isProgress = true;progress++;/** if (progress > 200) progress = 100;*/spinHandler.sendEmptyMessage(0);}

RatioProgress 完整代码:

public class RatioProgress extends View {// Sizes (with defaults)private int layout_height = 0;private int layout_width = 0;// Colors (with defaults)private int bgColor = Color.TRANSPARENT;//private int progressColor = 0xFF339933;// Paintsprivate Paint progressPaint = new Paint();private Paint bgPaint = new Paint();// Rectanglesprivate RectF rectBgBounds = new RectF();private RectF rectProgressBounds = new RectF();int progress = 0;boolean isProgress;private String direction;/*** progress的颜色*/private int progressColor;boolean running;int sleepDelay;public int getSleepDelay() {return sleepDelay;}public void setSleepDelay(int sleepDelay) {this.sleepDelay = sleepDelay;}private Handler spinHandler = new Handler() {/*** This is the code that will increment the progress variable and so* spin the wheel*/@Overridepublic void handleMessage(Message msg) {invalidate();}};/*** @param context*/public RatioProgress(Context context) {this(context, null);}/*** @param context* @param attrs*/public RatioProgress(Context context, AttributeSet attrs) {this(context, attrs, 0);}/*** @param context* @param attrs* @param defStyleAttr*/public RatioProgress(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);/*** 获得我们所定义的自定义样式属性*/TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.RatioProgress, defStyleAttr, 0);int n = a.getIndexCount();for (int i = 0; i < n; i++){int attr = a.getIndex(i);switch (attr){case R.styleable.RatioProgress_direction:direction = a.getString(attr);Log.e("direction-----------------", direction);break;case R.styleable.RatioProgress_progressColor:progressColor = a.getColor(attr, Color.TRANSPARENT);break;}}a.recycle();}@Overrideprotected void onSizeChanged(int w, int h, int oldw, int oldh) {super.onSizeChanged(w, h, oldw, oldh);// Share the dimensionslayout_width = w;Log.i("layout_width", layout_width + "");layout_height = h;Log.i("layout_height", layout_height + "");setupBounds();setupPaints();invalidate();}private void setupPaints() {bgPaint.setColor(bgColor);bgPaint.setAntiAlias(true);bgPaint.setStyle(Style.FILL);progressPaint.setColor(progressColor);progressPaint.setAntiAlias(true);progressPaint.setStyle(Style.FILL);}private void setupBounds() {int width = getWidth(); // this.getLayoutParams().width;Log.i("width", width + "");int height = getHeight(); // this.getLayoutParams().height;Log.i("height", height + "");rectBgBounds = new RectF(0, 0, width, height);start();}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);canvas.drawRect(rectBgBounds, bgPaint);Log.i("progress", progress + "");if (TextUtils.equals(direction, "left")) {rectProgressBounds = new RectF(0, 0, progress, layout_height);} else if (TextUtils.equals(direction, "right")) {rectProgressBounds = new RectF(getWidth() - progress, 0, getWidth(), layout_height);}else{rectProgressBounds = new RectF(0, 0, progress, layout_height);}canvas.drawRect(rectProgressBounds, progressPaint);}/*** Increment the progress by 1 (of 100)*/public void incrementProgress() {isProgress = true;progress++;/** if (progress > 200) progress = 100;*/spinHandler.sendEmptyMessage(0);}/*** Increment the progress by 1 (of 100)*/public void unIncrementProgress() {isProgress = true;progress--;/** if (progress < 1) progress = 100;*/spinHandler.sendEmptyMessage(0);}/*** Set the progress to a specific value*/public void setProgress(int i) {progress = i;spinHandler.sendEmptyMessage(0);}final Runnable r = new Runnable() {public void run() {running = true;Log.e("thread", "progress="+progress);Log.e("thread", "getWidth()="+getWidth());while (progress < getWidth()) {incrementProgress();//progress++;try {Thread.sleep(sleepDelay);} catch (InterruptedException e) {e.printStackTrace();}}running = false;}};public void start(){if (!running) {progress = 0;Thread s = new Thread(r);s.start();}}
}

布局以及代码中的使用:

布局文件

这里在LinearLayout 中定义了两个RatioProgress

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"xmlns:sus="http://schemas.android.com/apk/res/com.soulrelay.ratioprogress"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="horizontal" ><com.soulrelay.ratioprogress.RatioProgress
        android:id="@+id/left_ratio_progress"android:layout_width="match_parent"android:layout_height="4dp"android:layout_marginTop="100dp"sus:direction="left"sus:progressColor="@color/CommonTextSelect" /><com.soulrelay.ratioprogress.RatioProgress
        android:id="@+id/right_ratio_progress"android:layout_width="match_parent"android:layout_height="4dp"android:layout_marginLeft="4dp"android:layout_marginTop="100dp"sus:direction="right" sus:progressColor="@color/CommonSelect"/></LinearLayout>

实际java代码中的控制

这里主要是设置leftRatioProgress和rightRatioProgress的宽度,以及通过设置View中的线程休眠时间来控制进度条可以同时相遇

public class MainActivity extends Activity {RatioProgress leftRatioProgress;RatioProgress rightRatioProgress;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);WindowManager manager = ((WindowManager) this.getSystemService(Context.WINDOW_SERVICE));DisplayMetrics dm = new DisplayMetrics();manager.getDefaultDisplay().getMetrics(dm);final int w = dm.widthPixels;leftRatioProgress = (RatioProgress) findViewById(R.id.left_ratio_progress);LayoutParams lp = leftRatioProgress.getLayoutParams();lp.width = w/3;leftRatioProgress.setLayoutParams(lp);rightRatioProgress = (RatioProgress) findViewById(R.id.right_ratio_progress);LayoutParams lp1 = rightRatioProgress.getLayoutParams();lp1.width = w*2/3;rightRatioProgress.setLayoutParams(lp1);leftRatioProgress.setSleepDelay(6);rightRatioProgress.setSleepDelay(3);}
}

实际代码中我是根据用户的点赞数来分割屏幕宽度,设置View中的休眠时间

以下代码仅供参考:

   /*** 进度条形式显示赞数的比例** @param matchInfo* @author sushuai*/private void initRatioProgress(MatchInfo matchInfo) {int width = SystemUtil.getScreenDisplayMinWidth(context);int leftWeight = matchInfo.getTeam1().getLikes();int rightWeight = matchInfo.getTeam2().getLikes();int leftWidth = 0, rightWidth = 0;if (leftWeight == 0 && rightWeight == 0) {leftWidth = rightWidth = width / 2;} else if (leftWeight == 0) {rightWidth = width;} else if (rightWeight == 0) {leftWidth = width;} else {leftWidth = width * leftWeight / (leftWeight + rightWeight);rightWidth = width * rightWeight / (leftWeight + rightWeight);}if (leftRatioProgress != null) {LayoutParams lp = leftRatioProgress.getLayoutParams();lp.width = leftWidth;leftRatioProgress.setLayoutParams(lp);if (leftWidth >= rightWidth) {leftRatioProgress.setSleepDelay(1);} else if (leftWidth != 0) {leftRatioProgress.setSleepDelay(rightWidth / leftWidth);}}if (rightRatioProgress != null) {LayoutParams lp = rightRatioProgress.getLayoutParams();lp.width = rightWidth;rightRatioProgress.setLayoutParams(lp);if (leftWidth >= rightWidth && rightWidth != 0) {rightRatioProgress.setSleepDelay(leftWidth / rightWidth);} else {rightRatioProgress.setSleepDelay(1);}}}

其它

Demo下载:

传送门

参考链接:

1、http://blog.csdn.net/wangjinyu501/article/details/38298737
1、http://blog.csdn.net/lmj623565791/article/details/24252901/

这篇关于Android自定义View之如期相遇的百分比进度条RatioProgress的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/263582

相关文章

Vite 打包目录结构自定义配置小结

《Vite打包目录结构自定义配置小结》在Vite工程开发中,默认打包后的dist目录资源常集中在asset目录下,不利于资源管理,本文基于Rollup配置原理,本文就来介绍一下通过Vite配置自定义... 目录一、实现原理二、具体配置步骤1. 基础配置文件2. 配置说明(1)js 资源分离(2)非 JS 资

Android协程高级用法大全

《Android协程高级用法大全》这篇文章给大家介绍Android协程高级用法大全,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友跟随小编一起学习吧... 目录1️⃣ 协程作用域(CoroutineScope)与生命周期绑定Activity/Fragment 中手

聊聊springboot中如何自定义消息转换器

《聊聊springboot中如何自定义消息转换器》SpringBoot通过HttpMessageConverter处理HTTP数据转换,支持多种媒体类型,接下来通过本文给大家介绍springboot中... 目录核心接口springboot默认提供的转换器如何自定义消息转换器Spring Boot 中的消息

Android 缓存日志Logcat导出与分析最佳实践

《Android缓存日志Logcat导出与分析最佳实践》本文全面介绍AndroidLogcat缓存日志的导出与分析方法,涵盖按进程、缓冲区类型及日志级别过滤,自动化工具使用,常见问题解决方案和最佳实... 目录android 缓存日志(Logcat)导出与分析全攻略为什么要导出缓存日志?按需过滤导出1. 按

Python自定义异常的全面指南(入门到实践)

《Python自定义异常的全面指南(入门到实践)》想象你正在开发一个银行系统,用户转账时余额不足,如果直接抛出ValueError,调用方很难区分是金额格式错误还是余额不足,这正是Python自定义异... 目录引言:为什么需要自定义异常一、异常基础:先搞懂python的异常体系1.1 异常是什么?1.2

Linux中的自定义协议+序列反序列化用法

《Linux中的自定义协议+序列反序列化用法》文章探讨网络程序在应用层的实现,涉及TCP协议的数据传输机制、结构化数据的序列化与反序列化方法,以及通过JSON和自定义协议构建网络计算器的思路,强调分层... 目录一,再次理解协议二,序列化和反序列化三,实现网络计算器3.1 日志文件3.2Socket.hpp

C语言自定义类型之联合和枚举解读

《C语言自定义类型之联合和枚举解读》联合体共享内存,大小由最大成员决定,遵循对齐规则;枚举类型列举可能值,提升可读性和类型安全性,两者在C语言中用于优化内存和程序效率... 目录一、联合体1.1 联合体类型的声明1.2 联合体的特点1.2.1 特点11.2.2 特点21.2.3 特点31.3 联合体的大小1

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

springboot自定义注解RateLimiter限流注解技术文档详解

《springboot自定义注解RateLimiter限流注解技术文档详解》文章介绍了限流技术的概念、作用及实现方式,通过SpringAOP拦截方法、缓存存储计数器,结合注解、枚举、异常类等核心组件,... 目录什么是限流系统架构核心组件详解1. 限流注解 (@RateLimiter)2. 限流类型枚举 (

SpringBoot 异常处理/自定义格式校验的问题实例详解

《SpringBoot异常处理/自定义格式校验的问题实例详解》文章探讨SpringBoot中自定义注解校验问题,区分参数级与类级约束触发的异常类型,建议通过@RestControllerAdvice... 目录1. 问题简要描述2. 异常触发1) 参数级别约束2) 类级别约束3. 异常处理1) 字段级别约束