android自定义view实现progressbar的效果
一键清理是很多Launcher都会带有的功能,其效果也比较美观。实现方式也许有很多中,其中常见的是使用图片drawable来完成的,具体可以参考这篇文章:模仿实现360桌面水晶球式的一键清理特效。本文另辟蹊径,使用自定义View来完成同样的效果,性能、效率更高。
- /**
- *
- */
- package com.kince.progressrectangle;
- import android.content.Context;
- import android.graphics.Canvas;
- import android.graphics.Color;
- import android.graphics.Paint;
- import android.graphics.RectF;
- import android.graphics.Paint.Style;
- import android.os.Handler;
- import android.os.Message;
- import android.util.AttributeSet;
- import android.util.Log;
- import android.view.View;
- /**
- * @author kince
- * @category 仿solo桌面内存清理效果
- * @since 2014.7.30
- * @version 1.0.0
- * {@link }
- *
- */
- public class ProgressRectangle 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;
- // Paints
- private Paint progressPaint = new Paint();
- private Paint bgPaint = new Paint();
- private Paint titlePaint = new Paint();
- private Paint usePaint = new Paint();
- // Rectangles
- private RectF rectBgBounds = new RectF();
- private RectF rectProgressBounds = new RectF();
- int progress = 100;
- boolean isProgress;
- private Handler spinHandler = new Handler() {
- /**
- * This is the code that will increment the progress variable and so
- * spin the wheel
- */
- @Override
- public void handleMessage(Message msg) {
- invalidate();
- // super.handleMessage(msg);
- }
- };
- /**
- * @param context
- */
- public ProgressRectangle(Context context) {
- super(context);
- // TODO Auto-generated constructor stub
- }
- /**
- * @param context
- * @param attrs
- */
- public ProgressRectangle(Context context, AttributeSet attrs) {
- super(context, attrs);
- // TODO Auto-generated constructor stub
- }
- /**
- * @param context
- * @param attrs
- * @param defStyleAttr
- */
- public ProgressRectangle(Context context, AttributeSet attrs,
- int defStyleAttr) {
- super(context, attrs, defStyleAttr);
- // TODO Auto-generated constructor stub
- }
- @Override
- protected void onSizeChanged(int w, int h, int oldw, int oldh) {
- // TODO Auto-generated method stub
- super.onSizeChanged(w, h, oldw, oldh);
- // Share the dimensions
- layout_width = w;
- Log.i("layout_width", layout_width + "");
- layout_height = h;
- Log.i("layout_height", layout_height + "");
- setupBounds();
- setupPaints();
- invalidate();
- }
- private void setupPaints() {
- // TODO Auto-generated method stub
- bgPaint.setColor(bgColor);
- bgPaint.setAntiAlias(true);
- bgPaint.setStyle(Style.FILL);
- progressPaint.setColor(progressColor);
- progressPaint.setAntiAlias(true);
- progressPaint.setStyle(Style.FILL);
- titlePaint.setColor(Color.WHITE);
- titlePaint.setTextSize(20);
- titlePaint.setAntiAlias(true);
- titlePaint.setStyle(Style.FILL);
- usePaint.setColor(Color.WHITE);
- usePaint.setAntiAlias(true);
- usePaint.setTextSize(30);
- usePaint.setStyle(Style.FILL);
- }
- private void setupBounds() {
- // TODO Auto-generated method stub
- 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);
- }
- @Override
- protected void onDraw(Canvas canvas) {
- // TODO Auto-generated method stub
- super.onDraw(canvas);
- canvas.drawRect(rectBgBounds, bgPaint);
- Log.i("progress", progress + "");
- rectProgressBounds = new RectF(0, 0, progress, layout_height);
- canvas.drawRect(rectProgressBounds, progressPaint);
- canvas.drawText("使用内存", 25, 25, titlePaint);
- canvas.drawText(progress + "M" + "/1024M", 25, 60, usePaint);
- }
- /**
- * Increment the progress by 1 (of 100)
- */
- public void incrementProgress() {
- isProgress = true;
- progress++;
- if (progress > 200)
- progress = 100;
- // setText(Math.round(((float) progress / 360) * 100) + "%");
- spinHandler.sendEmptyMessage(0);
- }
- /**
- * Increment the progress by 1 (of 100)
- */
- public void unIncrementProgress() {
- isProgress = true;
- progress--;
- if (progress < 1)
- progress = 100;
- // setText(Math.round(((float) progress / 360) * 100) + "%");
- spinHandler.sendEmptyMessage(0);
- }
- /**
- * Set the progress to a specific value
- */
- public void setProgress(int i) {
- progress = i;
- spinHandler.sendEmptyMessage(0);
- }
- }
- package com.kince.progressrectangle;
- import android.app.Activity;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- public class RecActivity extends Activity {
- boolean running;
- int progress = 0;
- ProgressRectangle progressRectangle;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_rec);
- progressRectangle=(ProgressRectangle) findViewById(R.id.progressBar);
- final Runnable r = new Runnable() {
- public void run() {
- running = true;
- while(progress<100) {
- progressRectangle.incrementProgress();
- progress++;
- try {
- Thread.sleep(15);
- } catch (InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- while(progress>0) {
- progressRectangle.unIncrementProgress();
- progress--;
- try {
- Thread.sleep(15);
- } catch (InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- running = false;
- }
- };
- Button increment = (Button) findViewById(R.id.btn_increment);
- increment.setOnClickListener(new OnClickListener() {
- public void onClick(View v) {
- if(!running) {
- progress = 0;
- Thread s = new Thread(r);
- s.start();
- }
- }
- });
- }
- }
效果如下:
android自定义view实现progressbar的效果的更多相关文章
- Android自定义View之ProgressBar出场记
关于自定义View,我们前面已经有三篇文章在介绍了,如果筒子们还没阅读,建议先看一下,分别是android自定义View之钟表诞生记.android自定义View之仿通讯录侧边栏滑动,实现A-Z字母检 ...
- Android 自定义view实现水波纹效果
http://blog.csdn.net/tianjian4592/article/details/44222565 在实际的开发中,很多时候还会遇到相对比较复杂的需求,比如产品妹纸或UI妹纸在哪看了 ...
- android自定义View之3D索引效果
效果图: 我的小霸王太卡了. 最近工作比较忙,今天搞了一下午才搞出来这个效果,这种效果有很多种实现方式,最常见的应该是用贝塞尔曲线实现的.今天我们来看另一种不同的实现方式,只需要用到 canvas.s ...
- Android自定义View——刮刮卡效果
想要红包的实现效果的可以关注我的博客,仿饿了么红包 下层图片:我们的红包的图片 上层图片:有两部分 一部分是灰色背景 一部分是拥有透明度为0,并且模式为交集的画笔 使用滑动监听,滑动时,用透明度为0的 ...
- Android自定义View 画弧形,文字,并增加动画效果
一个简单的Android自定义View的demo,画弧形,文字,开启一个多线程更新ui界面,在子线程更新ui是不允许的,但是View提供了方法,让我们来了解下吧. 1.封装一个抽象的View类 B ...
- Android自定义View(LimitScrollerView-仿天猫广告栏上下滚动效果)
转载请标明出处: http://blog.csdn.net/xmxkf/article/details/53303872 本文出自:[openXu的博客] 1分析 2定义组合控件布局 3继承最外层控件 ...
- 我的Android进阶之旅------>Android自定义View实现带数字的进度条(NumberProgressBar)
今天在Github上面看到一个来自于 daimajia所写的关于Android自定义View实现带数字的进度条(NumberProgressBar)的精彩案例,在这里分享给大家一起来学习学习!同时感谢 ...
- Android 自定义View合集
自定义控件学习 https://github.com/GcsSloop/AndroidNote/tree/master/CustomView 小良自定义控件合集 https://github.com/ ...
- Android 自定义 view(三)—— onDraw 方法理解
前言: 上一篇已经介绍了用自己定义的属性怎么简单定义一个view<Android 自定义view(二) -- attr 使用>,那么接下来我们继续深究自定义view,下一步将要去简单理解自 ...
随机推荐
- HDU2303(数论)大整数求余+素数筛选
Sample Input 143 10 143 20 667 20 667 30 2573 30 2573 40 0 0 Sample Output GOOD BAD 11 GOOD BAD 23 ...
- Linux添加系统调用的两种方法
前言 系统调用的基本原理 系统调用其实就是函数调用,只不过调用的是内核态的函数,但是我们知道,用户态是不能随意调用内核态的函数的,所以采用软中断的方式从用户态陷入到内核态.在内核中通过软中断0X80, ...
- solr6.6初探之分词篇
关于solr6.6搭建与配置可以参考 solr6.6初探之配置篇 在这里我们探讨一下分词的配置 一.关于分词 1.分词是指将一个中文词语拆成若干个词,提供搜索引擎进行查找,比如说:北京大学 是一个词那 ...
- DELL、HP、IBM X86服务器命名规则
DELL.HP.IBM X86服务器命名规则 各大服务器厂家对于自己的服务器命名都有一定的规则,通常会根据服务器的外观(如塔式.机架式.刀片等).处理器(如Intel或者AMD等).架构等信息来命名. ...
- 好用的jquery.animateNumber.js数字动画插件
在做公司的运营报告页面时,有一个数字累计增加的动画效果,一开始,毫无头绪,不知如何下手,于是上网查资料,发现大多都是用的插件来实现的,那么今天,我也来用插件jquery.animateNumber.j ...
- 15_Python模块化编程_Python编程之路
之前跟大家讲的是一些python的数据基础,从这篇文章开始,我们开始正式学习python的模块化编程 下面我们解释一下什么叫做模块 之前已经讲过怎么去定义一个方法,如果你是用python交互器(自带交 ...
- Create database 创建数据库
首先在ORACLE用户下进入.bash_profile文件 [oracle@linux02 ~]$ vi .bash_profile export ORACLE_SID=hldbexport ORAC ...
- ubuntu 下查看caj文件
知网的学位论文只有CAJ版,而我又偏偏使用Ubuntu,所以就有了这篇文章. 前端时间发现第一种方法在ubuntu 16 上不行, 请使用第二种方法. 第一种方法: 环境:Ubuntu 14.04 6 ...
- Appium--入门demo
Appium环境搭建已经在在博客中写出 http://www.cnblogs.com/feimaoyuzhubaobao/p/5057832.html 那么本篇博客主要介绍java版本的appiu ...
- Android Studio精彩案例(六)《使用一个Demo涵盖补间动画所有知识》
转载本专栏文章,请注明出处,尊重原创 .文章博客地址:道龙的博客 元旦假期里,闲的无事,看到美团加载数据的动画,就突想写个Demo把动画知识集成一下.后来想了想,还是直接用一个Demo来把所有动画知识 ...