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

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

怎么在Android中通過自定義view實現(xiàn)一個刷新旋轉(zhuǎn)風(fēng)車效果

怎么在Android中通過自定義view實現(xiàn)一個刷新旋轉(zhuǎn)風(fēng)車效果?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)建站主要從事網(wǎng)頁設(shè)計、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站設(shè)計、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、微信小程序開發(fā)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的網(wǎng)站制作、成都網(wǎng)站制作、網(wǎng)站設(shè)計、網(wǎng)絡(luò)營銷經(jīng)驗,集策劃、開發(fā)、設(shè)計、營銷、管理等多方位專業(yè)化運作于一體。

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

package com.shipneg.demoysp.demo;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.os.CountDownTimer;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.ImageView;

/**
 * Created by dell on 2017/4/7.
 */
public class RotationView extends ImageView {

 /**
  * 要轉(zhuǎn)動的圖片
  **/
 private Bitmap bitMap;
 /**
  * 風(fēng)車每次轉(zhuǎn)動的弧度
  **/
 private int rad = 0;
 /**
  * 風(fēng)車移動的軌跡
  **/
 private int excursion = -100;
 /**
  * 圖片的寬度:在這里提供的是正方形的圖片,所以寬度和高度是一樣的
  **/
 private int width = 0;
 /***
  * 圖片的高度:在這里提供的是正方形的圖片,所以寬度和高度是一樣的
  **/
 private int height = 0;
 /**
  * 定義一個畫筆
  **/
 private Paint paint = new Paint();


 public RotationView(Context context, AttributeSet attrs) {
  super(context, attrs);
 }

 public RotationView(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
 }

 public RotationView(Context context) {
  super(context);
 }

 /**
  * 獲取圖片的寬和高
  */
 public void initSize() {
  width = bitMap.getWidth();
  height = bitMap.getHeight();

  postInvalidate();
 }


 public void setBitMap(Bitmap bitMap) {
  this.bitMap = bitMap;
 }


 //一圖片的寬和高來設(shè)定自定義View的寬和高,由于是正方形寬和高是一樣的 
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  // TODO Auto-generated method stub 
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
 }

 CountDownTimer c = new CountDownTimer(5000, 10) {
  @Override
  public void onTick(long millisUntilFinished) {
   postInvalidate();
   rad = rad + 7;
  }

  @Override
  public void onFinish() {
   downY = 0;
   excursion = -100;
   postInvalidate();
  }
 };

 /***
  * 實現(xiàn)onDraw方法把風(fēng)車圖片繪制出來,同時繪制出來風(fēng)車的旋轉(zhuǎn)效果,通過Matrix來控制
  */
 @Override
 protected void onDraw(Canvas canvas) {

  Matrix matrix = new Matrix();
  // 設(shè)置轉(zhuǎn)軸位置 
  matrix.setTranslate((float) width / 2, (float) height / 2);
//  rad -=15;//每次旋轉(zhuǎn)的弧度增量為3當(dāng)然,數(shù)字越大轉(zhuǎn)動越快
  // 開始轉(zhuǎn) 
  matrix.preRotate(rad);
  // 開始平移
  matrix.postTranslate(0, excursion);
  // 轉(zhuǎn)軸還原 
  matrix.preTranslate(-(float) width / 2, -(float) height / 2);
  //繪制風(fēng)車圖片 
  canvas.drawBitmap(bitMap, matrix, paint);

  super.onDraw(canvas);
 }

 private int downY = 0;
 private int moveY = 0;
 private int abc = 0;

 @Override
 public boolean onTouchEvent(MotionEvent event) {
  int action = event.getAction();
  switch (action) {
   case MotionEvent.ACTION_DOWN://隨著手指的move而不斷進(jìn)行重繪,進(jìn)而讓風(fēng)車轉(zhuǎn)動起來 
    postInvalidate();//調(diào)用方法進(jìn)行重繪 
    downY = (int) event.getY();
    c.cancel();
    break;

   case MotionEvent.ACTION_MOVE://隨著手指的move而不斷進(jìn)行重繪,進(jìn)而讓風(fēng)車轉(zhuǎn)動起來 
    //調(diào)用方法進(jìn)行重繪 
    int movey2 = moveY;

    rad = (int) -event.getY() * 6;//旋轉(zhuǎn)的速度
    moveY = (int) (event.getY() - downY);//手指移動的距離

    int chz = moveY - movey2;

    if (chz > 10) {
     chz = chz / 10;
    } else if (chz < -10) {
     chz = chz / 10;
    }
    Log.e("TAG:" + excursion, "chz: " + chz + "http://moveY:" + moveY + "http://movey2:" + movey2);
    //100是向下滑動的最大距離
    if (excursion >= 100) {
     abc = abc + chz;
     if (chz < 0 && abc - chz < 0) {

      excursion = excursion + chz;
     }


    } else {
     //開始向下運動
     excursion += chz;

    }
    postInvalidate();
    c.cancel();
    break;
   case MotionEvent.ACTION_UP:
    c.start();
    break;
  }
  return true;
 }


}

調(diào)用方法

//調(diào)用的方法
 RotationView rotation = (RotationView) view.findViewById(R.id.rotationView);
  BitmapDrawable drawable = (BitmapDrawable) getResources().getDrawable(R.drawable.fengche);
  rotation.setBitMap(drawable.getBitmap());
  rotation.initSize();

看完上述內(nèi)容,你們掌握怎么在Android中通過自定義view實現(xiàn)一個刷新旋轉(zhuǎn)風(fēng)車效果的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


標(biāo)題名稱:怎么在Android中通過自定義view實現(xiàn)一個刷新旋轉(zhuǎn)風(fēng)車效果
文章路徑:http://weahome.cn/article/igdooi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部