這篇文章主要介紹了Android如何實(shí)現(xiàn)自定義view畫圓效果,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)建站主要從事網(wǎng)站建設(shè)、成都做網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)橋西,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
看圖
代碼:
package sjx.com.custonview; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.support.annotation.Nullable; import android.util.AttributeSet; import android.util.Log; import android.view.MotionEvent; import android.view.View; import android.view.Window; /** * dell 孫勁雄 * 2017/9/1 * 19:57 */ public class Custonm extends View { private float currentX = 40; private float currentY = 50; public Custonm(Context context) { super(context); } public Custonm(Context context, AttributeSet attrs) { super(context, attrs); } public Custonm(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } //測(cè)量 @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } //擺放 @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); Paint paint=new Paint(); paint.setColor(Color.RED); paint.setStyle(Paint.Style.FILL); paint.setAntiAlias(true); canvas.drawCircle(currentX,currentY,30,paint); } @Override public boolean dispatchTouchEvent(MotionEvent event) { return super.dispatchTouchEvent(event); } @Override public boolean onTouchEvent(MotionEvent event) { currentX=event.getX(); currentY=event.getY(); invalidate(); switch (event.getAction()){ case MotionEvent.ACTION_DOWN: Log.i("sss", "按下"); break; case MotionEvent.ACTION_MOVE: Log.i("sss", "移動(dòng)"); break; case MotionEvent.ACTION_UP: Log.i("sss", "彈起"); break; } return true; } }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android如何實(shí)現(xiàn)自定義view畫圓效果”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!