<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了Android實現簡單垂直進度條的具體程式碼,供大家參考,具體內容如下
程式碼註釋特別清晰,就不多解釋了
支援屬性:
有需要定義其他屬性的,可以進行擴充下面是效果圖
上程式碼
VerticalProgress
public class VerticalProgress extends View { //進度條圓角 private int mRadius; //進度條是否有邊框 private boolean mBorderEnable; //是否有漸變色 private boolean mGradientEnable; //漸變色 private int mStartResId; private int mEndResId; //邊框的顏色 private int mBorderColorResId; //進度條背景填充色 private int mProgressBgColorId; //邊框寬度 private int mBorderWidth; private int mProgress = 10; private int max = 100; private int mWidth; private int mHeight; private RectF mRectF; private Paint mPaint; public VerticalProgress(Context context) { super(context); init(context, null); } public VerticalProgress(Context context, @Nullable AttributeSet attrs) { super(context, attrs); init(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); mWidth = getMeasuredWidth() - 1;// 寬度值 mHeight = getMeasuredHeight() - 1;// 高度值 } private void init(Context context, AttributeSet attrs) { TypedArray typedArray = null; if (attrs != null) { typedArray = context.obtainStyledAttributes(attrs, R.styleable.verticalProgress); mRadius = typedArray.getInt(R.styleable.verticalProgress_progress_radius, 0); mBorderEnable = typedArray.getBoolean(R.styleable.verticalProgress_progress_border_enable, false); mGradientEnable = typedArray.getBoolean(R.styleable.verticalProgress_progress_gradient_enable, true); mStartResId = typedArray.getResourceId(R.styleable.verticalProgress_progress_start_color, R.color.colorPrimary); mProgressBgColorId = typedArray.getResourceId(R.styleable.verticalProgress_progress_solid_color, R.color.white); mEndResId = typedArray.getResourceId(R.styleable.verticalProgress_progress_end_color, R.color.color_4EA6FD); mBorderColorResId = typedArray.getResourceId(R.styleable.verticalProgress_progress_border_color, R.color.color_4EA6FD); mBorderWidth = typedArray.getResourceId(R.styleable.verticalProgress_progress_border_width, 10); } if (typedArray != null) { typedArray.recycle(); } mRectF = new RectF(); mPaint = new Paint(); mPaint.setAntiAlias(true); } @SuppressLint("DrawAllocation") @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); if (mRadius == 0) { //弧度為高度的一半 mRadius = mWidth / 2; } if (mBorderEnable) { //第一層矩形(描邊層) mRectF.set(0, 0, mWidth, mHeight); //第一層矩形顏色(進度條描邊的顏色) mPaint.setColor(getResources().getColor(mBorderColorResId)); //畫第一層圓角矩形 canvas.drawRoundRect(mRectF, mRadius, mRadius, mPaint); //第二層矩形顏色(背景層顏色) mPaint.setColor(getResources().getColor(mProgressBgColorId)); //第二層矩形(背景層) mRectF.set(mBorderWidth, mBorderWidth, mWidth - mBorderWidth, mHeight - mBorderWidth); //畫背景層圓角矩形(蓋在描邊層之上) canvas.drawRoundRect(mRectF, mRadius, mRadius, mPaint); } if (mProgress == 0)//進度為 0不畫進度 return; float section = mProgress / max; //進度層底層 mRectF.set(+8, mHeight - mProgress / 100f * mHeight + 10, mWidth - 8, mHeight - 8); if (mGradientEnable) { //漸變器 LinearGradient shader = new LinearGradient(0, 0, mWidth * section, mHeight, getResources().getColor(mStartResId), getResources().getColor(mEndResId), Shader.TileMode.CLAMP); //第三層矩形顏色(進度漸變色) mPaint.setShader(shader); } //畫第三層(進度層)圓角矩形(蓋在背景層之上) canvas.drawRoundRect(mRectF, mRadius, mRadius, mPaint); //清除之前傳遞的shader mPaint.setShader(null); } public void setProgress(int currentCount) { this.mProgress = currentCount > max ? max : currentCount; postInvalidate(); } }
attr.xml樣式
<declare-styleable name="verticalProgress"> <attr name="progress_radius" format="dimension" /> <attr name="progress_border_width" format="dimension" /> <attr name="progress_gradient_enable" format="boolean" /> <attr name="progress_border_enable" format="boolean" /> <attr name="progress_start_color" format="color" /> <attr name="progress_solid_color" format="color" /> <attr name="progress_end_color" format="color" /> <attr name="progress_border_color" format="boolean" /> </declare-styleable>
最後呼叫範例
<com.widget.VerticalProgress android:id="@+id/vp_progress" android:layout_width="20dp" android:layout_height="match_parent" app:progress_border_enable="true" app:progress_solid_color="@color/white" android:layout_centerInParent="true" />
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45