【达内课程】自定义控件(奔跑的阿狸)

2024-05-12 09:32

本文主要是介绍【达内课程】自定义控件(奔跑的阿狸),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这一节要的效果如图
在这里插入图片描述
新建AnimationView

public class AnimationView extends View {Bitmap[] bitmapArray = new Bitmap[4];int currentIndex = 0;int viewWidth, viewHeight;int sleepTime = 1000;boolean isRunning = true;Thread thread;public AnimationView(Context context, AttributeSet attrs) {super(context, attrs);bitmapArray[0] = BitmapFactory.decodeResource(getResources(), R.mipmap.logo1);bitmapArray[1] = BitmapFactory.decodeResource(getResources(), R.mipmap.logo2);bitmapArray[2] = BitmapFactory.decodeResource(getResources(), R.mipmap.logo3);bitmapArray[3] = BitmapFactory.decodeResource(getResources(), R.mipmap.logo4);thread = new Thread(new MyRunnable());thread.start();}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);Rect rect = new Rect(0, 0, viewWidth, viewHeight);Paint paint = new Paint();paint.setColor(Color.CYAN);canvas.drawRect(rect, paint);Bitmap bitmap = bitmapArray[currentIndex];int imageX = (viewWidth - bitmap.getWidth()) / 2;int imageY = (viewHeight - bitmap.getHeight()) / 2;canvas.drawBitmap(bitmap, imageX, imageY, paint);}/@Overrideprotected void onSizeChanged(int w, int h, int oldw, int oldh) {viewWidth = w;viewHeight = h;super.onSizeChanged(w, h, oldw, oldh);}class MyRunnable implements Runnable {@Overridepublic void run() {while (isRunning) {try {currentIndex++;if (currentIndex > (bitmapArray.length - 1)) {currentIndex = 0;}//只能在主线程中调用invalidate()//工作线程中调onDrawpostInvalidate();Thread.currentThread().sleep(sleepTime);} catch (InterruptedException e) {e.printStackTrace();}}}}
}

在布局中使用

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:background="@mipmap/first_bg"><com.example.xx.allrun.widget.AnimationViewandroid:id="@+id/animationView"android:layout_width="match_parent"android:layout_height="match_parent" /></LinearLayout>

素材图片如下
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
增加自定义属性

res下增加attrs.xml,这里我们定义了2个属性,sleep_time用来控制休眠时间,是个浮点类型;images用来控制图片,是个引用类型

<resources><declare-styleable name="AnimationView"><attr name="sleep_time" format="float"/><attr name="images" format="reference"/></declare-styleable>
</resources>

xml使用

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:AnimationView="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"><com.xx.animationview.AnimationViewandroid:id="@+id/animationView"android:layout_width="match_parent"android:layout_height="match_parent"AnimationView:sleep_time="1000"/></LinearLayout>

这里用了我们刚才自定义的属性,就行android中自带的属性会有android:前缀,我们自定义的属性要想使用自定义的前缀,需要增加声明。例如,我们使用AnimationView:前缀,我们需要增加xmlns:AnimationView="http://schemas.android.com/apk/res-auto",这行代码

AnimationView的构造方法中可以拿到这些属性

    public AnimationView(Context context, AttributeSet attrs) {super(context, attrs);//读取自定义属性//attrs里放的是属性//数组里放的是sleep_time和images属性TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.AnimationView);sleepTime = (int)typedArray.getFloat(R.styleable.AnimationView_sleep_time,0);......}

现在我们来用属性控制图片

res下新建arrays.xml

<resources><string-array name="animationImages"><item>@mipmap/logo1</item><item>@mipmap/logo2</item><item>@mipmap/logo3</item><item>@mipmap/logo4</item></string-array>
</resources>

xml中使用

    <com.xx.animationview.AnimationViewandroid:id="@+id/animationView"android:layout_width="match_parent"android:layout_height="match_parent"AnimationView:sleep_time="5000"AnimationView:images="@array/animationImages"/>

AnimationView构造方法中读取图片属性,之前存放图片的 Bitmap[] bitmapArray 指定了大小为4,这里去掉这个限制,设置其大小为图片的个数

public class AnimationView extends View {Bitmap[] bitmapArray;......public AnimationView(Context context, AttributeSet attrs) {super(context, attrs);......//读取float和读取数组是不一样的Resources resources = context.getResources();TypedArray typedArrayImages = resources.obtainTypedArray(R.array.animationImages);int length = typedArrayImages.length();bitmapArray = new Bitmap[length];for(int i=0;i<length;i++){//从数组中读取图的Id//第二个参数是默认值int imageResId = typedArrayImages.getResourceId(i,0);//创建BitmapBitmap bitmap = BitmapFactory.decodeResource(context.getResources(),imageResId);bitmapArray[i] = bitmap;}......}
}

设置控件宽高

现在控件是全屏的,现在设置控件大小为最大的图片宽高

布局中设置控件宽高为wrap_content

<com.xx.animationview.AnimationViewandroid:id="@+id/animationView"android:layout_width="wrap_content"android:layout_height="wrap_content"AnimationView:sleep_time="500"AnimationView:images="@array/animationImages"/>

AnimationView中定义最大宽高,然后重写onMeasure方法

public class AnimationView extends View {......//图片最大宽高int imageMaxWidth,imageMaxHeight;public AnimationView(Context context, AttributeSet attrs) {super(context, attrs);......for(int i=0;i<length;i++){//从数组中读取图的Id//第二个参数是默认值int imageResId = typedArrayImages.getResourceId(i,0);//创建BitmapBitmap bitmap = BitmapFactory.decodeResource(context.getResources(),imageResId);//得图的最大宽高if(bitmap.getWidth()>imageMaxWidth){imageMaxWidth = bitmap.getWidth();}if(bitmap.getHeight()>imageMaxHeight){imageMaxHeight = bitmap.getHeight();}bitmapArray[i] = bitmap;}thread = new Thread(new MyRunnable());thread.start();}//设置控件的大小@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);setMeasuredDimension(imageMaxWidth,imageMaxHeight);}......
}

下载地址

https://download.csdn.net/download/u010356768/11151293

这篇关于【达内课程】自定义控件(奔跑的阿狸)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/982247

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

基于Spring实现自定义错误信息返回详解

《基于Spring实现自定义错误信息返回详解》这篇文章主要为大家详细介绍了如何基于Spring实现自定义错误信息返回效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景目标实现产出背景Spring 提供了 @RestConChina编程trollerAdvice 用来实现 HTT

SpringSecurity 认证、注销、权限控制功能(注销、记住密码、自定义登入页)

《SpringSecurity认证、注销、权限控制功能(注销、记住密码、自定义登入页)》SpringSecurity是一个强大的Java框架,用于保护应用程序的安全性,它提供了一套全面的安全解决方案... 目录简介认识Spring Security“认证”(Authentication)“授权” (Auth

SpringBoot自定义注解如何解决公共字段填充问题

《SpringBoot自定义注解如何解决公共字段填充问题》本文介绍了在系统开发中,如何使用AOP切面编程实现公共字段自动填充的功能,从而简化代码,通过自定义注解和切面类,可以统一处理创建时间和修改时间... 目录1.1 问题分析1.2 实现思路1.3 代码开发1.3.1 步骤一1.3.2 步骤二1.3.3

dubbo3 filter(过滤器)如何自定义过滤器

《dubbo3filter(过滤器)如何自定义过滤器》dubbo3filter(过滤器)类似于javaweb中的filter和springmvc中的intercaptor,用于在请求发送前或到达前进... 目录dubbo3 filter(过滤器)简介dubbo 过滤器运行时机自定义 filter第一种 @A

CSS自定义浏览器滚动条样式完整代码

《CSS自定义浏览器滚动条样式完整代码》:本文主要介绍了如何使用CSS自定义浏览器滚动条的样式,包括隐藏滚动条的角落、设置滚动条的基本样式、轨道样式和滑块样式,并提供了完整的CSS代码示例,通过这些技巧,你可以为你的网站添加个性化的滚动条样式,从而提升用户体验,详细内容请阅读本文,希望能对你有所帮助...

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单

SpringBoot 自定义消息转换器使用详解

《SpringBoot自定义消息转换器使用详解》本文详细介绍了SpringBoot消息转换器的知识,并通过案例操作演示了如何进行自定义消息转换器的定制开发和使用,感兴趣的朋友一起看看吧... 目录一、前言二、SpringBoot 内容协商介绍2.1 什么是内容协商2.2 内容协商机制深入理解2.2.1 内容