ProgressWheel是github上一个开源的项目,为开发者提供一个扁平化的ProgressBar,并可以对其进行深度定制。效果如下:
下面介绍使用方式:
1.下面是ProgressWheel源码,拷到项目下。
package com.example.view;
import android.content.Context;
import android.conte...
分类:
移动开发 时间:
2014-07-27 11:47:43
阅读次数:
366
Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar、TextView、ScrollView、TimeView、TipView、FlipView、C...
分类:
移动开发 时间:
2014-07-22 22:53:13
阅读次数:
455
ProgressBar 控件以两种样式之一直观地指示较长操作的进度。显示重复模式的条,即不断出现省略号的模式。( IsIndeterminate="True" )基于值进行填充的条。(IsIndeterminate="False" )详细说明:http://wp.662p.co...
http://blog.sina.com.cn/s/blog_3e333c4a010133ze.html 1、建立myprogress.xml在 res/anim中 <?xml version="1.0" encoding="UTF-8"?> <animation-list android:oneshot="false" xmlns:android="http://schemas...
分类:
移动开发 时间:
2014-07-21 13:26:59
阅读次数:
224
progressDrawable = this.getResources().getDrawable(R.drawable.image);progressDrawable.setBounds(mSeekBar.getProgressDrawable().getBounds());mSeekBar.s...
分类:
其他好文 时间:
2014-07-21 00:14:53
阅读次数:
213
点显示进度条后→ android:max="100" 进度条的最大值 android:progress 进度条已经完成的进度值 android:progressDrawable 已经完成的进度条轨道显示的Drawable对象in...
分类:
其他好文 时间:
2014-07-19 15:23:13
阅读次数:
393
SeekBar继承自ProgressBar,所以基本一样,我们自定义一般也就是顶一个滑块的图片而已。布局文件 MainActivity.javapackage com.kale.seekbar;import android.os.Bundle;import android.suppor...
分类:
其他好文 时间:
2014-07-19 15:12:10
阅读次数:
4189
上面三个图分别是 开始时的样子,走进度时候的样子,最后完成的样子
分类:
其他好文 时间:
2014-07-19 09:07:45
阅读次数:
184
int offset=0;int size=4096;progressBar.Maximum = int.MaxValue;progressBar.Minimum = 0;progressBar.Value = 0;offset += size;progressBar.Value = (int)(o...
分类:
其他好文 时间:
2014-07-15 09:43:09
阅读次数:
238
昨天写了一个从文章中提取关键词的程序,写完处理的逻辑后又花了好几个小时在用户友好性上。加了几个progressBar,有显示总进度的、有显示分布进度的。。因为程序要跑好几个小时才能执行好,只加个总进度的话感觉不太明显。一个label,显示当先操作的具体内容,还有个richtextbox显示出所有操....