前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android自定义View图片按Path运动和旋转

Android自定义View图片按Path运动和旋转

作者头像
砸漏
发布2020-11-01 15:02:33
7470
发布2020-11-01 15:02:33
举报
文章被收录于专栏:恩蓝脚本恩蓝脚本

本文实例为大家分享了Android自定义View图片按Path运动旋转的具体代码,供大家参考,具体内容如下

View:

代码语言:javascript
复制
/** 
 * author : stone 
 * email : aa86799@163.com 
 * time : 16/5/29 15 29 
 */ 
public class EarthPathView extends View { 
 
 private Path mPath; 
 private Paint mPaint; 
 private Bitmap mBitmap; 
 private PathMeasure mPathMeasure; 
 private float[] mPoint; 
 private float[] mTan; 
 private float mDdegrees; 
 
 public EarthPathView(Context context) { 
  this(context, null); 
 } 
 
 public EarthPathView(Context context, AttributeSet attrs) { 
  this(context, attrs, 0); 
 } 
 
 public EarthPathView(Context context, AttributeSet attrs, int defStyleAttr) { 
  super(context, attrs, defStyleAttr); 
 
  mPaint = new Paint(); 
  mPaint.setColor(Color.RED); 
  mPaint.setStyle(Paint.Style.STROKE); 
  mPaint.setStrokeWidth(10); 
 
  InputStream is = getResources().openRawResource(R.drawable.earth); 
  mBitmap = BitmapFactory.decodeStream(is); 
 
 } 
 
 public void setPath(Path path) { 
  mPath = path; 
  mPathMeasure = new PathMeasure(path, false); 
  mPoint = new float[2]; 
  mTan = new float[2]; 
 
 } 
 
 @Override 
 protected void onDraw(Canvas canvas) { 
  super.onDraw(canvas); 
  if (mPath == null) { 
   return; 
  } 
 
 
  canvas.rotate(mDdegrees+=2, getWidth()/2, getHeight()/2); 
  canvas.drawPath(mPath, mPaint); 
 
  float degress = (float) Math.toDegrees(Math.atan2(mTan[1], mTan[0])); 
  Matrix matrix = new Matrix(); 
  matrix.postRotate(degress, mBitmap.getWidth() / 2, mBitmap.getHeight() / 2); 
  matrix.postTranslate(mPoint[0] - mBitmap.getWidth() / 2, mPoint[1] - mBitmap.getHeight() / 2); 
  canvas.drawBitmap(mBitmap, matrix, null); 
 
 
 } 
 
 @TargetApi(Build.VERSION_CODES.HONEYCOMB) 
 public void startAnim() { 
  ValueAnimator animator = ValueAnimator.ofFloat(0, mPathMeasure.getLength()); 
  animator.setDuration(2000); 
  animator.setInterpolator(new LinearInterpolator()); //插值器 
  animator.setRepeatCount(ValueAnimator.INFINITE); 
  animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 
   @Override 
   public void onAnimationUpdate(ValueAnimator animation) { 
    float distance = (float) animation.getAnimatedValue(); 
    mPathMeasure.getPosTan(distance, mPoint, mTan); 
    invalidate(); 
   } 
  }); 
  animator.start(); 
 } 
} 

Activity

代码语言:javascript
复制
package com.stone.canvaspath; 
 
import android.app.Activity; 
import android.graphics.Path; 
import android.os.Bundle; 
 
import com.stone.canvaspath.earth.EarthPathView; 
 
/** 
 * author : stone 
 * email : aa86799@163.com 
 * time : 16/5/29 15 27 
 */ 
public class EarthActivity extends Activity { 
 
 private EarthPathView mPathView; 
 private Path mPath; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
 
  int w = getResources().getDisplayMetrics().widthPixels; 
  int h = getResources().getDisplayMetrics().heightPixels; 
 
  mPathView = new EarthPathView(this); 
 
  setContentView(mPathView); 
 
  int min = Math.min(w, h); 
  buildPath(w / 2 + 100, h / 2 + 100, min / 4); 
 
  mPathView.setPath(mPath); 
 
  mPathView.startAnim(); 
 } 
 
 private void buildPath(float x, float y, float radius) { 
  mPath = new Path(); 
  mPath.addCircle(x, y, radius, Path.Direction.CW); 
 } 
 
} 

以上就是本文的全部内容,希望对大家的学习有所帮助。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档