91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現自定義view畫圓效果

發布時間:2021-06-30 10:58:21 來源:億速云 閱讀:119 作者:小新 欄目:移動開發

這篇文章主要介紹了Android如何實現自定義view畫圓效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

看圖

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畫圓效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

九台市| 婺源县| 绥阳县| 犍为县| 襄垣县| 龙岩市| 都昌县| 舞阳县| 汉中市| 裕民县| 和田县| 手游| 清水县| 阳原县| 镇坪县| 宜章县| 宁都县| 三河市| 子长县| 江西省| 星座| 彭泽县| 会东县| 车险| 颍上县| 山阳县| 孙吴县| 浦北县| 深州市| 长岭县| 梧州市| 鲁甸县| 扶风县| 惠水县| 庄浪县| 汉中市| 聂荣县| 大悟县| 临清市| 大名县| 巴塘县|