在Android開發中,圖表的實現相當繁瑣的,這個時候我們只能通過自定義視圖來實現,下文是武林技術頻道小編為大家帶來的Android自定view畫圓效果,一起來看看吧!
看圖

代碼:
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); }//測量 @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", "移動"); break; case MotionEvent.ACTION_UP: Log.i("sss", "彈起"); break; } return true; }}以上就是武林技術頻道小編介紹的Android自定view畫圓效果全部內容,希望對大家的學習有所幫助,大家可以收藏js.Vevb.com方便查閱哦。
新聞熱點
疑難解答