Android Studio实现滑动图片验证码

源代码链接
效果:
在这里插入图片描述
在这里插入图片描述
MainActivity

package com.example.slidingpattern;import androidx.appcompat.app.AppCompatActivity;import android.annotation.SuppressLint;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.SeekBar;
import android.widget.TextView;public class MainActivity extends AppCompatActivity {//类成员变量private SeekBar seekBar;//SeekBar可以供用户进行拖动改变进度值private Button button1;private SlideImageView slideImageView;//SlideImageView实现随机选取拼图位置,对拼图位置进行验证private TextView resultText;private View flashView;private static final int flashTime = 80;private long timeStart = 0;private float timeUsed;@SuppressLint("ClickableViewAccessibility")@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);seekBar = findViewById(R.id.seekBar1);//滑动条button1 = findViewById(R.id.button1);slideImageView = findViewById(R.id.slide_image_view);//滑动图片flashView = findViewById(R.id.flash_view);resultText = findViewById(R.id.show_result);slideImageView.setImageBitmap(BitmapFactory.decodeResource(getResources(), R.drawable.background_image));//设置整张图片seekBar.setMax(10000);//setMax()方法设置拖动条最大值seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener(){@Overridepublic void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {//slideImageView 是一个滑动图片视图的实例//setMove() 是一个设置移动位置的方法。//progress 是一个进度值,根据这个进度值计算出移动距离,并将其乘以 0.0001 作为移动的比例slideImageView.setMove(progress*0.0001);}@Overridepublic void onStartTrackingTouch(SeekBar seekBar) {timeStart = System.currentTimeMillis();//返回当前的计算机时间,}@Overridepublic void onStopTrackingTouch(SeekBar seekBar) {}});seekBar.setOnTouchListener(new View.OnTouchListener(){@Overridepublic boolean onTouch(View v, MotionEvent event) {//触摸屏幕时刻switch(event.getAction()){case MotionEvent.ACTION_UP: //终止触摸时刻timeUsed = (System.currentTimeMillis() - timeStart) / 1000.0f;//(当前计算机时间-开始时间)/1000.0 = 使用时间boolean isTrue = slideImageView.isTrue(0.1);//允许有10%误差if(isTrue) {flashShowAnime();updateText("验证成功,耗时:" + timeUsed + "秒");//更新文本} else {updateText("验证失败");}break;}return false;}});button1.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {reInit();}});}//更新文字内容private void updateText(final String s) {runOnUiThread(new Runnable() {@Overridepublic void run() {resultText.setText(s);}});}//初始化页面private void reInit() {slideImageView.setReDraw();//重新绘制滑动图片视图seekBar.setProgress(0);//将滑块的位置重置到起始位置resultText.setText("");//清空显示结果的文本框flashView.setVisibility(View.INVISIBLE);//将 flashView 的可见性设置为不可见}private void flashShowAnime() {//通过设置参数来定义了一个位移动画TranslateAnimation translateAnimation = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 1f,//X轴初始位置Animation.RELATIVE_TO_SELF, -1f,//X轴移动的结束位置Animation.RELATIVE_TO_SELF, 0f,//y轴开始位置Animation.RELATIVE_TO_SELF, 0f);//y轴移动后的结束位置translateAnimation.setDuration(flashTime);//设置了动画的持续时间,其中 flashTime 是一个变量,用于表示动画持续的时间长度//translateAnimation.setInterpolator(new LinearInterpolator());flashView.setVisibility(View.VISIBLE);//表示视图可见flashView.setAnimation(translateAnimation);//在给定的时间内将视图从一个位置平滑地移动到另一个位置//设置一个动画监听器translateAnimation.setAnimationListener(new Animation.AnimationListener() {//动画开始时调用的回调方法@Overridepublic void onAnimationStart(Animation animation) {}//动画结束时调用的回调方法@Overridepublic void onAnimationEnd(Animation animation) {flashView.setVisibility(View.INVISIBLE);//表示视图不可见,但仍占用布局空间}//动画重复播放时调用的回调方法@Overridepublic void onAnimationRepeat(Animation animation) {}});}}

SlideImageView

package com.example.slidingpattern;import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.View;import java.util.Random;public class SlideImageView extends View {Bitmap bitmap;Bitmap drawBitmap;Bitmap verifyBitmap;boolean reset = true;// 拼图的位置int x;int y;// 验证的地方int left, top, right, bottom;// 移动x坐标int moveX;// x坐标最大移动长度int moveMax;// 正确的拼图x坐标int trueX;public SlideImageView(Context context) {super(context);}public SlideImageView(Context context, AttributeSet attrs) {super(context, attrs);}public SlideImageView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);if (bitmap == null)return;if (reset) {//  背景图int width = getWidth();int height = getHeight();//根据原来的位图创建一个新的位图drawBitmap = Bitmap.createScaledBitmap(bitmap, width, height, false);//验证int length = Math.min(width, height);length /= 4;//1/4长度// 随机选取拼图的位置// new Random().nextInt()生成一个介于0和指定值之间的随机整数x = new Random().nextInt(width - length * 2) + length;y = new Random().nextInt(height - length * 2) + length;left = x;top = y;right = left + length;bottom = top + length;//验证的图片verifyBitmap = Bitmap.createBitmap(drawBitmap, x, y, length, length);// 验证图片的最大移动距离moveMax = width - length;// 正确的验证位置xtrueX = x;reset = false;}Paint paint = new Paint();//创建一个 Paint 对象,并使用默认的画笔属性// 画背景图//在画布上绘制背景图 (drawBitmap)。其中的参数 drawBitmap 是要绘制的背景图像,(0, 0) 是背景图像在画布上的左上角坐标canvas.drawBitmap(drawBitmap, 0, 0, paint);paint.setColor(Color.parseColor("#66000000"));//未拼图位置的颜色设置canvas.drawRect(left, top, right, bottom, paint);//画上阴影paint.setColor(Color.parseColor("#ffffffff"));canvas.drawBitmap(verifyBitmap, moveX, y, paint);//画验证图片}public void setImageBitmap(Bitmap bitmap) {this.bitmap = bitmap;}public void setMove(double precent) {if (precent < 0 || precent > 1)return;moveX = (int) (moveMax * precent);invalidate();}public boolean isTrue(double range) {if (moveX > trueX * (1 - range) && moveX < trueX * (1 + range)) {return true;} else {return false;}}public void setReDraw() {reset = true;invalidate();}
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="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="com.example.slidingpattern.MainActivity"android:orientation="vertical"><com.example.slidingpattern.SlideImageViewandroid:id="@+id/slide_image_view"android:layout_width="240dp"android:layout_height="240dp"android:layout_marginTop="50dp"app:layout_constraintTop_toTopOf="parent"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toRightOf="parent"/><Viewandroid:id="@+id/flash_view"android:layout_width="wrap_content"android:layout_height="wrap_content"android:visibility="invisible"app:layout_constraintLeft_toLeftOf="@id/slide_image_view"app:layout_constraintRight_toRightOf="@id/slide_image_view"app:layout_constraintTop_toTopOf="@id/slide_image_view"app:layout_constraintBottom_toBottomOf="@id/slide_image_view"android:background="@color/black"/><SeekBarandroid:id="@+id/seekBar1"android:layout_width="240dp"android:layout_height="wrap_content"android:layout_marginTop="310dp"app:layout_constraintTop_toTopOf="parent"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toRightOf="parent"/><TextViewandroid:id="@+id/show_result"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="330dp"android:textSize="20sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toRightOf="parent"app:layout_constraintTop_toTopOf="parent"/><Buttonandroid:id="@+id/button1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="360dp"android:text="重新初始化"app:layout_constraintTop_toTopOf="parent"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toRightOf="parent"/></androidx.constraintlayout.widget.ConstraintLayout>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/62088.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

photoshop生成器引入到electron项目(electron与photoshop建立通信)

Photoshop引入了nodejs&#xff0c;在启动的时候&#xff0c;通过pipe调起nodejs运行时核心generator-builtin&#xff0c;通过KLVR机制与ps进行通信和交互&#xff0c;同时会加载用户编写的扩展。 这里记录一下引入时的踩坑过程 generator-core就是它的源码&#xff0c;elect…

栈和队列(二) 队列操作详解及栈与队列的相互实现

文章目录 四、队列1、什么是队列2、队列的基本操作Queue.hQueue.c初始化队列队尾入队列队头出队列获取队列头部元素获取队列队尾元素获取队列中有效元素个数检测队列是否为空&#xff0c;如果为空返回非零结果&#xff0c;如果非空返回0销毁队列 五、设计循环队列六、栈与队列的…

整数中1出现的次数(从1到n整数中1出现的次数)

解题思路1&#xff1a; 设定整数点&#xff08;如1、10、100等等&#xff09;作为位置点i&#xff08;对应n的各位、十位、百位等等&#xff09;&#xff0c;分别对每个数位上有多少包含1的点进行分析。 第一步&#xff1a;对n进行分割&#xff0c;分为两部分&#xff1a;高位…

标准化归一化 batch norm, layer norm, group norm, instance norm

Layer Normalization - EXPLAINED (in Transformer Neural Networks) Layer Normalization - EXPLAINED (in Transformer Neural Networks) 0~4min:什么是multi-head attention 5~7min:layer norm图示 7~9min:公式举例layer norm 9:54-end:layer norm的代码示例 group n…

Redis安装配置远程连接

1. yum 安装 redis&#xff1a; 直接使用命令&#xff0c;将 redis 安装到 linux 服务器中&#xff1a; yum -y install redis 2. 启动 redis&#xff1a; 在 xshell 里&#xff0c;可以使用下面命令&#xff0c;以后台方式启动 redis&#xff1a; [rootVM-8-17-centos /]…

【李宏毅机器学习·学习笔记】Tips for Training: Batch and Momentum

本节课主要介绍了Batch和Momentum这两个在训练神经网络时用到的小技巧。合理使用batch&#xff0c;可加速模型训练的时间&#xff0c;并使模型在训练集或测试集上有更好的表现。而合理使用momentum&#xff0c;则可有效对抗critical point。 课程视频&#xff1a; Youtube&…

# X11、Xlib、XFree86、Xorg、GTK、Qt、Gnome和KDE之间的关系

X11、Xlib、XFree86、Xorg、GTK、Qt、Gnome和KDE之间的关系 很多人对于他们是啥是傻傻分不清的&#xff0c;我做了个表格供大家参考。 摘抄&#xff1a; X11是X Window System Protocol, Version 11&#xff08;RFC1013&#xff09;&#xff0c;是X server和X client之间的通…

Observability:识别生成式 AI 搜索体验中的慢速查询

作者&#xff1a;Philipp Kahr Elasticsearch Service 用户的重要注意事项&#xff1a;目前&#xff0c;本文中描述的 Kibana 设置更改仅限于 Cloud 控制台&#xff0c;如果没有我们支持团队的手动干预&#xff0c;则无法进行配置。 我们的工程团队正在努力消除对这些设置的限制…

100G光模块的应用案例分析:电信、云计算和大数据领域

100G光模块是一种高速光模块&#xff0c;由于其高速率和低延迟的特性&#xff0c;在电信、云计算和大数据领域得到了广泛的应用。在本文中&#xff0c;我们将深入探讨100G光模块在这三个领域的应用案例。 一、电信领域 在电信领域&#xff0c;100G光模块被广泛用于构建高速通…

ECRS工时分析:什么叫标准化作业管理?为什么要进行作业标准化管理

中国自古就有标准化。《孙子兵法》中&#xff0c;孙子训练射箭&#xff0c;射箭的姿势是“标准化操作”&#xff1b;中国武术中的套路是“标准化”&#xff1b;在中国古诗中&#xff0c;字数甚至被“标准化”来打开中国历史&#xff0c;“标准化”作业的例子数不胜数。 而在工厂…

mac-右键-用VSCode打开

1.点击访达&#xff0c;搜索自动操作 2.选择快速操作 3.执行shell脚本 替换代码如下&#xff1a; for f in "$" doopen -a "Visual Studio Code" "$f" donecommand s保存会出现一个弹框&#xff0c;保存为“用VSCode打开” 5.使用

Spring项目整合过滤链模式~实战应用

代码下载 设计模式代码全部在gitee上,下载链接: https://gitee.com/xiaozheng2019/desgin_mode.git 日常写代码遇到的囧 1.新建一个类,不知道该放哪个包下 2.方法名称叫A,干得却是A+B+C几件事情,随时隐藏着惊喜 3.想复用一个方法,但是里面嵌套了多余的逻辑,只能自己拆出来…