這篇文章將為大家詳細(xì)講解有關(guān)怎么在Android中自定義View實(shí)現(xiàn)可展開(kāi)的按鈕,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
“專(zhuān)業(yè)、務(wù)實(shí)、高效、創(chuàng)新、把客戶(hù)的事當(dāng)成自己的事”是我們每一個(gè)人一直以來(lái)堅(jiān)持追求的企業(yè)文化。 成都創(chuàng)新互聯(lián)公司是您可以信賴(lài)的網(wǎng)站建設(shè)服務(wù)商、專(zhuān)業(yè)的互聯(lián)網(wǎng)服務(wù)提供商! 專(zhuān)注于做網(wǎng)站、網(wǎng)站設(shè)計(jì)、軟件開(kāi)發(fā)、設(shè)計(jì)服務(wù)業(yè)務(wù)。我們始終堅(jiān)持以客戶(hù)需求為導(dǎo)向,結(jié)合用戶(hù)體驗(yàn)與視覺(jué)傳達(dá),提供有針對(duì)性的項(xiàng)目解決方案,提供專(zhuān)業(yè)性的建議,創(chuàng)新互聯(lián)建站將不斷地超越自我,追逐市場(chǎng),引領(lǐng)市場(chǎng)!
1、按照國(guó)際慣例,就是新建attrs,寫(xiě)各種需要的屬性,然后獲取,新建各種所需的Paint、Rect,重寫(xiě)onMeasure計(jì)算寬高,重寫(xiě)onDraw畫(huà)圖搞起。。
2、關(guān)于可展開(kāi)效果,其實(shí)就是點(diǎn)擊發(fā)布時(shí),啟動(dòng)一個(gè)ValueAnimator,對(duì)一個(gè)圓角矩形的左邊距離不斷改變:
int mBackgroundRectFLeft; RectF mBackgroundRectF = new RectF(); @Override protected void onDraw(Canvas canvas) { mBackgroundRectF.set(mBackgroundRectFLeft, 0, getWidth(), getHeight()); canvas.drawRoundRect(mBackgroundRectF, mOuterRadius, mOuterRadius, mmBackgroundRectPaint);//圓角背景矩形 } private void openButton() { ValueAnimator rectLeftAnim = ValueAnimator.ofInt(mBackgroundRectFLeft, mArcWidth / 2); rectLeftAnim.setDuration(250); ValueAnimator textAlphaAnim = ValueAnimator.ofInt(0, mItemTextAlpha); textAlphaAnim.setDuration(120); rectLeftAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animation) { mBackgroundRectFLeft = (int) animation.getAnimatedValue(); invalidate(); } }); }
3、關(guān)于呼吸效果,就是一個(gè)對(duì)外圓圈半徑改變的ValueAnimator:
mBreatheRadius = getHeight() / 2 - mArcWidth / 4; mBreatheAnim = ValueAnimator.ofFloat(mBreatheRadius, mBreatheRadius - mArcWidth / 2); mBreatheAnim.setDuration(1000); mBreatheAnim.setRepeatMode(ValueAnimator.REVERSE); mBreatheAnim.setRepeatCount(Integer.MAX_VALUE); mBreatheAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animation) { mBreatheRadius = (float) animation.getAnimatedValue(); invalidate(); } }); mBreatheAnim.start(); @Override protected void onDraw(Canvas canvas) { canvas.drawCircle(mInnerCircleCenterX, mInnerCircleCenterY, mBreatheRadius, mBreathePaint);//呼吸圈
4、關(guān)于文字位置居中計(jì)算,以前我用一個(gè)Rect,用
paint.getTextBounds(text, 0, text.length(), mTextRect); int textWidth = mTextRect.width(); int textHeight = mTextRect.height();
這樣計(jì)算不準(zhǔn)確,可能是因?yàn)榉祷氐膶捀呤莍nt值,應(yīng)該用FontMetrics類(lèi)來(lái)計(jì)算,大家可以搜一下:
float buttonTextWidth = mButtonTextPaint.measureText(mButtonStr, 0, mButtonStr.length()); Paint.FontMetrics publishFontMetrics = mButtonTextPaint.getFontMetrics(); canvas.drawText(mButtonStr, 0, mButtonStr.length(), getWidth() - mOuterRadius - mArcWidth / 2 - buttonTextWidth / 2, mOuterRadius + mArcWidth / 2 + -(publishFontMetrics.ascent + publishFontMetrics.descent) / 2, mButtonTextPaint);
5、再有就是OnTouchEvent的處理,因?yàn)檫@個(gè)控件不是一直都是展開(kāi)狀態(tài),那么就要求控件在閉合的時(shí)候,要不影響該控件下層控件對(duì)點(diǎn)擊的處理。比如我這個(gè)ExpandableBreathngButton,下層是一個(gè)RecyclerView,并設(shè)置了OnItemClickListener,那我這個(gè)按鈕在閉合時(shí),點(diǎn)擊按鈕左側(cè)但還是在這個(gè)View范圍內(nèi)的地方,如下圖紅框內(nèi)
這個(gè)范圍內(nèi)應(yīng)該不處理事件,return false
@Override public boolean onTouchEvent(MotionEvent event) { switch (event.getAction()) { case MotionEvent.ACTION_DOWN: x = (int) event.getX(); y = (int) event.getY(); if (!isOpen && x < getWidth() - 2 * mOuterRadius && y > 0 && y < getHeight()) { //未展開(kāi)狀態(tài)下,點(diǎn)擊發(fā)布圓左側(cè)的位置,不處理事件 return false; } break; } }
關(guān)于怎么在Android中自定義View實(shí)現(xiàn)可展開(kāi)的按鈕就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站標(biāo)題:怎么在Android中自定義View實(shí)現(xiàn)可展開(kāi)的按鈕
文章轉(zhuǎn)載:http://jinyejixie.com/article16/pggidg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、微信小程序、標(biāo)簽優(yōu)化、商城網(wǎng)站、ChatGPT、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)