Progressbar 使用方法详述

XML属性:

animationResolution:每帧之间动画超时时间,以毫秒为单位,必须是一个整数值如“100”

indeterminate:允许启用不确定模式,进度条起着无限循环动画,必须是布尔值

indeterminateBehavior:定义不确定模式下到达最大值后如何表现,取值:repeat,从0开始;cycle:从当前刻度返回0

indeterminateDuration:不定模式的周期

indeterminateOnly:只能使用不确定模式

max:最大值

maxHeight:可选参数,设置最大高度

maxWidth:设置最大宽度

mirrorForRtl:定义在RTL模式下,是否把图片进行镜像

progress:默认刻度

progressDrawable:图片资源

secondaryProgress:指定中间层刻度


公共方法:

public Drawable getIndeterminateDrawable ()

得到不定模式的Drawable对象

public Interpolator getInterpolator ()

获取不确定动画的加速曲线类型。

public synchronized int getMax ()

获得最大值

public synchronized int getProgress ()

获得当前刻度

public synchronized int getSecondaryProgress ()

获得中间层刻度

public final synchronized void incrementProgressBy (int diff)

指定步进长度

public final synchronized void incrementSecondaryProgressBy (int diff)

中间层步进

public synchronized boolean isIndeterminate ()

判断是否在不确定模式

public void invalidateDrawable (Drawable dr)

指定某Drawable无效

public void jumpDrawablesToCurrentState ()

跳过过度状态到当前状态

public void onInitializeAccessibilityEvent (AccessibilityEvent event)

???










你可能感兴趣的:(android,ProgressBar)