返回顶部
首页 > 资讯 > 精选 >怎么在Android中通过自定义View实现一个箭头沿圆转动效果
  • 420
分享到

怎么在Android中通过自定义View实现一个箭头沿圆转动效果

androidview 2023-05-30 20:05:48 420人浏览 安东尼
摘要

这篇文章主要为大家详细介绍了怎么在Android中通过自定义View实现一个箭头沿圆转动效果,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:Android是什么Android是一种基于linux内核的自由及开放

这篇文章主要为大家详细介绍了怎么在Android中通过自定义View实现一个箭头沿圆转动效果,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:

Android是什么

Android是一种基于linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发

具体代码如下所示:

//MyCircleView类public class MyCircleView extends View{ //当前画笔画圆的颜色 private int CurrenCircleBoundColor; private Paint paint; ////从xml中获取的颜色 private int circleBundColor; private float circleBoundWidth; private float pivotX; private float pivotY; private float radius=130; private float currentDegree=0; private int currentSpeed=1; private boolean isPause=false; public MyCircleView(Context context) {  super(context);  initView(context); } public MyCircleView(Context context, @Nullable AttributeSet attrs) {  super(context, attrs);  initView(context);  TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyCircleView);  for (int i = 0; i < typedArray.getIndexCount(); i++) {   //就是我们自定义的属性的资源id   int attr = typedArray.getIndex(i);   switch (attr){    case R.styleable.MyCircleView_circlr_bound_color:     circleBundColor = typedArray.getColor(attr, Color.RED);     CurrenCircleBoundColor=circleBundColor;     break;    case R.styleable.MyCircleView_circlr_bound_width:     circleBoundWidth = typedArray.getDimension(attr, 3);     break;   }  } } public MyCircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {  super(context, attrs, defStyleAttr);  initView(context); } private void initView(Context context){  paint = new Paint(); } public void setColor(int color){  if (CurrenCircleBoundColor!=color){   CurrenCircleBoundColor=color;  }else {   CurrenCircleBoundColor=circleBundColor;  } } @Override protected void onDraw(canvas canvas) {  super.onDraw(canvas);  paint.setAntiAlias(true);  paint.setColor(CurrenCircleBoundColor);  paint.setStrokeWidth(circleBoundWidth);  paint.setStyle(Paint.Style.STROKE);  pivotX = getWidth() / 2;  pivotY = getHeight() / 2;  canvas.drawCircle(pivotX,pivotY,radius,paint);  canvas.save();  //旋转画布 , 如果旋转的的度数大的话,视觉上看着是旋转快的  canvas.rotate(currentDegree,pivotX,pivotY);  //提供了一些api可以用来画线(画路径)  Path path = new Path();  //从哪开始画 从A开始画  path.moveTo(pivotX+radius,pivotY);  //从A点画一个直线到D点  path.lineTo(pivotX+radius-20,pivotY-20);  //从D点画一个直线到B点  path.lineTo(pivotX+radius,pivotY+20);  //从B点画一个直线到C点  path.lineTo(pivotX+radius+20,pivotY-20);  //闭合 -- 从C点画一个直线到A点  path.close();  paint.setStyle(Paint.Style.FILL);  paint.setColor(Color.BLACK);  canvas.drawPath(path,paint);  canvas.restore();  //旋转的度数一个一个度数增加, 如果乘以一个速度的话,按一个速度速度增加  currentDegree+=1*currentSpeed;  if (!isPause){   invalidate();  } } public void speed(){  ++currentSpeed;  if (currentSpeed>=10){   currentSpeed=10;   Toast.makeText(getContext(),"我比闪电还快",Toast.LENGTH_SHORT).show();  } } public void slowDown(){  --currentSpeed;  if (currentSpeed<=1){   currentSpeed=1;  } } public void pauseOrStart(){  //如果是开始状态的话去重新绘制  if (isPause){   isPause=!isPause;   invalidate();  }else {   isPause=!isPause;  } }}//主页面public class MainActivity extends AppCompatActivity { //全局变量 private MyCircleView my_view; @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  //找控件  my_view = (MyCircleView) findViewById(R.id.my_view); } public void onClick(View view){  my_view.setColor(Color.BLUE); } public void add(View view){  my_view.speed(); } public void slow(View view){  my_view.slowDown(); } public void pauseOrStart(View view){  my_view.pauseOrStart(); }}主页面布局<RelativeLayout xmlns:android="Http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.lx_20170928.MainActivity"> <Button  android:id="@+id/set_color_btn"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_centerHorizontal="true"  android:onClick="onClick"  android:text="设置颜色" /> <Button  android:id="@+id/add"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_below="@id/set_color_btn"  android:layout_centerHorizontal="true"  android:onClick="add"  android:text="加速" /> <Button  android:id="@+id/slow"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_below="@+id/add"  android:layout_centerHorizontal="true"  android:onClick="slow"  android:text="减速" /> <Button  android:id="@+id/pause_or_start"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_below="@+id/slow"  android:layout_centerHorizontal="true"  android:onClick="pauseOrStart"  android:text="暂定/开始" />  <com.example.lx_20170928.MyCircleView   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:id="@+id/my_view"   android:layout_centerInParent="true"   app:circlr_bound_color="@color/colorAccent"   app:circlr_bound_width="3Dp"   /></RelativeLayout>//在values建一个attrs.xml<resources> <declare-styleable name="MyCustomCircleArrowView">  <attr name="circlr_bound_width" fORMat="dimension"></attr>  <attr name="circlr_bound_color" format="color"></attr> </declare-styleable></resources>

以上就是编程网小编为大家收集整理的怎么在Android中通过自定义View实现一个箭头沿圆转动效果,如何觉得编程网网站的内容还不错,欢迎将编程网网站推荐给身边好友。

--结束END--

本文标题: 怎么在Android中通过自定义View实现一个箭头沿圆转动效果

本文链接: https://lsjlt.com/news/220895.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 怎么在Android中通过自定义View实现一个箭头沿圆转动效果
    这篇文章主要为大家详细介绍了怎么在Android中通过自定义View实现一个箭头沿圆转动效果,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:Android是什么Android是一种基于Linux内核的自由及开放...
    99+
    2023-05-30
    android view
  • 怎么在Android中通过自定义View实现一个扫描效果
    这篇文章给大家介绍怎么在Android中通过自定义View实现一个扫描效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。自定义属性:<declare-styleable name="ScanV...
    99+
    2023-06-14
  • 怎么在Android中通过自定义View实现一个抽屉效果
    怎么在Android中通过自定义View实现一个抽屉效果?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Android 自定义View实现抽屉效果说明这个自定义V...
    99+
    2023-05-31
    android view roi
  • Android中怎么通过自定义View实现圆形切图效果
    本篇文章给大家分享的是有关Android中怎么通过自定义View实现圆形切图效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。实现思路使用一个Paint,将得到的Bitmap设...
    99+
    2023-05-30
  • 怎么在Android中通过自定义view实现滑动解锁效果
    怎么在Android中通过自定义view实现滑动解锁效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。自定义view如下@SuppressLint("Clicka...
    99+
    2023-06-15
  • Android中怎么通过自定义View实现画圆
    Android中怎么通过自定义View实现画圆,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。引入布局<xml version="1.0...
    99+
    2023-05-30
    android
  • Android中怎么通过自定义view实现TopBar效果
    这篇文章给大家介绍Android中怎么通过自定义view实现TopBar效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。布局文件<xml version="1.0" en...
    99+
    2023-05-30
    android view topbar
  • 怎么在Android中通过自定义View实现一个环形进度条效果
    这篇文章给大家介绍怎么在Android中通过自定义View实现一个环形进度条效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。功能分析虽然功能比较简单,但是仍然需要仔细分析    ...
    99+
    2023-05-31
    android view roi
  • 在Android开发中通过自定义View实现一个圆形进度条
    这期内容当中小编将会给大家带来有关在Android开发中通过自定义View实现一个圆形进度条,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。首先来看看自己定义的Viewpackage cn.easymobi...
    99+
    2023-05-31
    android view roi
  • 通过在Android中自定义StickinessView实现一个粘性滑动效果
    这篇文章给大家介绍通过在Android中自定义StickinessView实现一个粘性滑动效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。一、首先,要确定HeadLayout什么时候可以拦截事件,那么就要确定List...
    99+
    2023-05-31
    android stickinessview roi
  • Android怎么自定义View实现圆弧进度效果
    这篇文章主要介绍“Android怎么自定义View实现圆弧进度效果”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Android怎么自定义View实现圆弧进度效果”文章能帮助大家解决问题。技术实现Ar...
    99+
    2023-07-06
  • Android中怎么自定义view实现圆环进度条效果
    这篇文章主要讲解了“Android中怎么自定义view实现圆环进度条效果”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android中怎么自定义view实现圆环进度条效果”吧!核心代码自定义...
    99+
    2023-06-29
  • Android中怎么通过自定义view实现进度条加载效果
    Android中怎么通过自定义view实现进度条加载效果,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。分析图:代码如下:package com.example.d...
    99+
    2023-05-30
    android view
  • 怎么在Android中自定义一个圆形进度条效果
    怎么在Android中自定义一个圆形进度条效果?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。Android是什么Android是一种基于Linux内核的自由及开放源代码的操作系...
    99+
    2023-06-14
  • Android通过自定义view实现刮刮乐效果详解
    目录前言实现原理关键步骤创建bitmap绘制文字画路径完整代码前言 已经有两个月没有更新博客了,其实这篇文章我早在两个月前就写好了,一直保存在草稿箱里没有发布出来。原因是有一些原理性...
    99+
    2024-04-02
  • Android自定义View实现叶子飘动旋转效果(四)
    上一篇实现了叶子飘动功能,《Android自定义叶子飘动》 现在实现旋转效果 要实现这个效果,要在之前的功能上添加2个功能 1、通过matrix.postTranslate(...
    99+
    2022-06-06
    view Android
  • Android中怎么通过自定义view实现动态柱状图
    这篇文章将为大家详细讲解有关Android中怎么通过自定义view实现动态柱状图,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。自定义viewpublic class Hi...
    99+
    2023-05-30
    android view
  • Android自定义View实现圆弧进度效果逐步完成过程
    目录技术实现1.继承自View2.Paint初始化3.Canvas绘制4.添加动画效果及数据涉及到的知识Canvas(画布),Paint(画笔),自定义控件等有三种:一个是直接从Vi...
    99+
    2023-05-16
    Android自定义View圆弧进度 Android实现圆弧进度 Android自定义View
  • Android如何实现自定义View圆形和拖动圆、跟随手指拖动效果
    小编给大家分享一下Android如何实现自定义View圆形和拖动圆、跟随手指拖动效果,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!单纯的自定义一个圆非常简单 只需要几步就完成 拖动圆添加实现触摸事件即可我在第一次自定义Vi...
    99+
    2023-05-30
    android view
  • Android 通过自定义view实现水波纹效果案例详解
    在实际的开发中,很多时候还会遇到相对比较复杂的需求,比如产品妹纸或UI妹纸在哪看了个让人兴奋的效果,兴致高昂的来找你,看了之后目的很明确,当然就是希望你能给她; 在这样的关键时候,身...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作