真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android自定義View實現(xiàn)葉子飄動旋轉(zhuǎn)效果(四)

上一篇實現(xiàn)了葉子飄動功能,《Android自定義葉子飄動》 現(xiàn)在實現(xiàn)旋轉(zhuǎn)效果

成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供成都網(wǎng)站建設(shè)、成都網(wǎng)站制作服務(wù),網(wǎng)站設(shè)計,網(wǎng)站托管維護等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競爭對手中脫穎而出成都創(chuàng)新互聯(lián)公司。

Android自定義View實現(xiàn)葉子飄動旋轉(zhuǎn)效果(四)

要實現(xiàn)這個效果,要在之前的功能上添加2個功能

1、通過matrix.postTranslate(int x, int y)在添加在Y軸上滑動

2、通過matrix.postRotate(float degrees, float px, float py)實現(xiàn)葉子旋轉(zhuǎn)

代碼實現(xiàn)

1、獲取Y坐標(biāo)

 private float getMatrixY() {
    float w = (float) ((float) 2 * Math.PI / width);
    int y = (int) (18 * Math.sin(w * getMatrixX())) + (height-mLeafHeight)/2;
    return y;
  }

math.sin(Math.PI....)的取值范圍貌似是-1~1之間。通過X坐標(biāo)在整個width的比例,獲取到Y(jié)坐標(biāo)的比例。

這里方法有很多,我這邊葉子Y坐標(biāo)默認在Y軸中間,然后上下+-18px實現(xiàn)在Y軸的滑動,18滑動浮動比較大了

public LeafView(Context context, AttributeSet attrs) {
    super(context, attrs);
    mResources = getResources();
    bgBitmap = ((BitmapDrawable) mResources.getDrawable(R.drawable.leaf_kuang, null)).getBitmap();
    leafBitmap = ((BitmapDrawable) mResources.getDrawable(R.drawable.leaf, null))).getBitmap();
   mLeafHeight = leafBitmap.getWidht();   

    bgPaint = new Paint();
    bgPaint.setColor(mResources.getColor(R.color.bg_color));
  }

  @Override
  protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    width = w;
    height = h;
    bgDestRect = new Rect(0, 0 , width, height);
  }

  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    bgRect = new RectF(0, 0 , width, height);
    //添加黃色背景
    canvas.drawRect(bgRect, bgPaint);
    //添加背景圖片
    canvas.drawBitmap(bgBitmap, null, bgDestRect, null);
    //添加葉子
    Matrix matrix = new Matrix();
    matrix.postTranslate(getMatriX(), getMatrixY);
    canvas.drawBitmap(leafBitmap, new Matrix(), new Paint());
    //重復(fù)調(diào)用onDraw()
    postInvalidate();
  }

  long cycleTime = 5000;  //葉子滑動一周的時間5秒
  long startTime = 0;   //葉子滑動開始時間
  private float getMatriX() {
    float betweenTime = startTime - System.currentTimeMillis();
    //周期結(jié)束再加一個cycleTime
    if(betweenTime < 0) {
      startTime = System.currentTimeMillis() + cycleTime;
      betweenTime = cycleTime;
    }
    //通過時間差計算出葉子的坐標(biāo)
    float fraction = (float) betweenTime / cycleTime;
    float x = (int)(width * fraction);
    return x;
  }
  
  private float getMatrixY() {
    float w = (float) ((float) 2 * Math.PI / width);
    int y = (int) (18 * Math.sin(w * getMatrixX())) + (height-mLeafHeight)/2;
    return y;
  }

看下效果就這樣,在Y軸上實現(xiàn)上下浮動,如果要浮動小點,可以把18改小

Android自定義View實現(xiàn)葉子飄動旋轉(zhuǎn)效果(四)

2、實現(xiàn)旋轉(zhuǎn)

主要通過matrix.postRotate(float degrees, float px, float py)

degrees就是角度(0~360),px,py就是圖片的中心點

  private int getRotate() {
    float scale = ((startTime - System.currentTimeMillis())%cycleTime)/ (float)cycleTime;
    int rotate = (int)(scale * 360);
    return rotate;
  }

同樣,通過當(dāng)前葉子在X軸的比例,來計算出旋轉(zhuǎn)的角度(0~360)

完整代碼:

public class LeafView extends View {
  private Resources mResources;
  private Bitmap mLeafBitmap, bgBitmap;
  private int width, height;
  private int mLeafWidth,mLeafHeight;
  private Paint bgPaint;
  private RectF bgRect;
  private Rect bgDestRect;

  public LeafView(Context context, AttributeSet attrs) {
    super(context, attrs);
    mResources = getResources();
    mLeafBitmap = ((BitmapDrawable) mResources.getDrawable(R.drawable.leaf, null)).getBitmap();
    mLeafWidth = mLeafBitmap.getWidht();
    mLeafHeight = mLeafBitmap.getHeight();
    bgBitmap = ((BitmapDrawable) mResources.getDrawable(R.drawable.leaf_kuang, null)).getBitmap();

    bgPaint = new Paint();
    bgPaint.setColor(mResources.getColor(R.color.bg_color));
  }

  @Override
  protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    width = w;
    height = h;
    bgDestRect = new Rect(0, 0 , width, height);
  }

  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    bgRect = new RectF(0, 0 , width, height);
    //添加黃色白金
    canvas.drawRect(bgRect, bgPaint);
    //添加背景圖片
    canvas.drawBitmap(bgBitmap, null, bgDestRect, null);

    canvas.save();
    Matrix matrix = new Matrix();
    //添加滑動
    matrix.postTranslate(getMatrixX(), getMatrixY());
    //添加旋轉(zhuǎn)
    matrix.postRotate(getRotate(), getMatrixX() + mLeafWidth / 2, getMatrixY() + mLeafHeight / 2);
    canvas.drawBitmap(mLeafBitmap, matrix, new Paint());
    canvas.restore();
    postInvalidate();

  }
  long cycleTime = 5000;  //葉子滑動一周的時間5秒
  long startTime = 0;
  private float getMatrixX() {
    float betweenTime = startTime - System.currentTimeMillis();
    //周期結(jié)束再加一個cycleTime
    if(betweenTime < 0) {
      startTime = System.currentTimeMillis() + cycleTime;
      betweenTime = cycleTime;
    }
    //通過時間差計算出葉子的坐標(biāo)
    float fraction = (float) betweenTime / cycleTime;
    float x = (int)(width * fraction);
    return x;
  }
  private float getMatrixY() {
    float w = (float) ((float) 2 * Math.PI / width);
    int y = (int) (18 * Math.sin(w * getMatrixX())) + (height-mLeafHeight)/2;
    return y;
  }
  private int getRotate() {
    float scale = ((startTime - System.currentTimeMillis())%cycleTime)/ (float)cycleTime;
    int rotate = (int)(scale * 360);
    return rotate;
  }
}


以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


當(dāng)前標(biāo)題:Android自定義View實現(xiàn)葉子飄動旋轉(zhuǎn)效果(四)
本文網(wǎng)址:http://weahome.cn/article/gegehh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部