android client随机验证码生成函数

由于该项目使用验证码。自己找了一些资料。尽量把这个验证码做出来。代码不是很,較的简单,以下给大家看看我是怎么实现该功能的:

源代码地址下载:http://download.csdn.net/detail/u014608640/7268905

首先当然是写XML咯,贴上代码

 <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="horizontal"
       android:id="@+id/yh"
       >

       <TextView
           android:text="username:"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           />

       <EditText
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           />

   </LinearLayout>

   <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="horizontal"
       android:layout_below="@id/yh"
       android:id="@+id/pwd"
       >

       <TextView
           android:text="password:"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           />

       <EditText
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           />

   </LinearLayout>

   <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_vertical"
                android:layout_marginTop="4dp"
                android:orientation="horizontal"
                android:layout_below="@id/pwd"
                android:id="@+id/code"
                 >

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="10dp"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    android:layout_marginTop="5dp"
                    android:orientation="horizontal" >

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="20dp"
                        android:layout_marginRight="5dp"
                        android:text="验 证 码:"
                        android:textColor="#000000" />

                    <EditText
                        android:id="@+id/vc_code"
                        android:layout_width="60dp"
                        android:layout_height="wrap_content"
                        android:layout_weight="1"
                        android:background="#0000"
                        android:maxLength="4"
                        android:paddingBottom="10dp"
                        android:paddingLeft="10dp"
                        android:paddingTop="10dp"
                        android:textColor="#000000"
                        android:textSize="14sp" />
                </LinearLayout>

                <ImageView
                    android:id="@+id/vc_image"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_marginBottom="10dp"
                    android:layout_marginTop="5dp"
                    android:layout_weight="1" />

                <Button
                    android:id="@+id/vc_shuaixi"
                    android:layout_width="40dp"
                    android:layout_height="wrap_content"
                    android:background="@android:color/transparent"
                    android:layout_gravity="center_vertical"
                    android:text="刷新验证码"
                    android:textStyle="italic"
                    android:layout_marginTop="5dp"
                    android:layout_marginBottom="10dp"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="#7f7f7f"
                    android:textSize="12sp" />
            </LinearLayout>

   <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:layout_below="@id/code"
       android:orientation="horizontal"
       >
       <Button
           android:id="@+id/vc_ok"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:text="确定"
           />

   </LinearLayout>

以下贴一下MainActivity的代码:

里面的凝视非常具体。就不多说了!

import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

public class MainActivity extends Activity {

    ImageView vc_image; //图标
    Button vc_shuaixi,vc_ok; //确定和刷新验证码
    String getCode=null; //获取验证码的值
    EditText vc_code; //文本框的值

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		vc_image=(ImageView)findViewById(R.id.vc_image);
		vc_image.setImageBitmap(Code.getInstance().getBitmap());
		vc_code=(EditText) findViewById(R.id.vc_code);

		getCode=Code.getInstance().getCode(); //获取显示的验证码
		Log.e("info", getCode+"----");
		vc_shuaixi=(Button)findViewById(R.id.vc_shuaixi);
		vc_shuaixi.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				vc_image.setImageBitmap(Code.getInstance().getBitmap());
				getCode=Code.getInstance().getCode();
			}
		});

		vc_ok=(Button)findViewById(R.id.vc_ok);
		vc_ok.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
			String	v_code=vc_code.getText().toString().trim();
			if(v_code==null||v_code.equals("")){
				Toast.makeText(MainActivity.this, "没有填写验证码", 2).show();
			}else if(!v_code.equals(getCode)){
				Toast.makeText(MainActivity.this, "验证码填写不对", 2).show();
			}else{
				Toast.makeText(MainActivity.this, "操作成功", 2).show();
			}

			}
		});

	}

最后贴一下做验证码必须的一个类Code:

import java.util.Random;

import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Bitmap.Config;

public class Code {

	private static final char[] CHARS = {
		‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘,
		‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘, ‘k‘, ‘l‘, ‘m‘,
		‘n‘, ‘o‘, ‘p‘, ‘q‘, ‘r‘, ‘s‘, ‘t‘, ‘u‘, ‘v‘, ‘w‘, ‘x‘, ‘y‘, ‘z‘,
		‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘, ‘I‘, ‘J‘, ‘K‘, ‘L‘, ‘M‘,
		‘N‘, ‘O‘, ‘P‘, ‘Q‘, ‘R‘, ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘, ‘X‘, ‘Y‘, ‘Z‘
	};

	private static Code bpUtil;
	private Code(){};
	public static Code getInstance() {
		if(bpUtil == null)
			bpUtil = new Code();
		return bpUtil;
	}
	//default settings
	private static final int DEFAULT_CODE_LENGTH = 4;//验证码的长度  这里是4位
	private static final int DEFAULT_FONT_SIZE = 60;//字体大小
	private static final int DEFAULT_LINE_NUMBER = 3;//多少条干扰线
	private static final int BASE_PADDING_LEFT = 20; //左边距
	private static final int RANGE_PADDING_LEFT = 35;//左边距范围值
	private static final int BASE_PADDING_TOP = 42;//上边距
	private static final int RANGE_PADDING_TOP = 15;//上边距范围值
	private static final int DEFAULT_WIDTH = 200;//默认宽度.图片的总宽
	private static final int DEFAULT_HEIGHT = 70;//默认高度.图片的总高
	private  final int DEFAULT_COLOR=0xdf;//默认背景颜色值

	//settings decided by the layout xml
	//canvas width and height
	private int width = DEFAULT_WIDTH;
	private int height = DEFAULT_HEIGHT; 

	//random word space and pading_top
	private int base_padding_left = BASE_PADDING_LEFT;
	private int range_padding_left = RANGE_PADDING_LEFT;
	private int base_padding_top = BASE_PADDING_TOP;
	private int range_padding_top = RANGE_PADDING_TOP;

	//number of chars, lines; font size
	private int codeLength = DEFAULT_CODE_LENGTH;
	private int line_number = DEFAULT_LINE_NUMBER;
	private int font_size = DEFAULT_FONT_SIZE;

	//variables
	private String code;//保存生成的验证码
	private int padding_left, padding_top;
	private Random random = new Random();

	private Bitmap createBitmap() {
		padding_left = 0;

		Bitmap bp = Bitmap.createBitmap(width, height, Config.ARGB_8888);
		Canvas c = new Canvas(bp);

		code = createCode();

		c.drawColor(Color.rgb(DEFAULT_COLOR, DEFAULT_COLOR, DEFAULT_COLOR));
		Paint paint = new Paint();
		paint.setTextSize(font_size);

		for (int i = 0; i < code.length(); i++) {
			randomTextStyle(paint);
			randomPadding();
			c.drawText(code.charAt(i) + "", padding_left, padding_top, paint);
		}

		for (int i = 0; i < line_number; i++) {
			drawLine(c, paint);
		}

		c.save( Canvas.ALL_SAVE_FLAG );//保存
		c.restore();//
		return bp;
	}

	public String getCode() {
		return code.toLowerCase();
	}

	public Bitmap getBitmap(){
		return createBitmap();
	}
	private String createCode() {
		StringBuilder buffer = new StringBuilder();
		for (int i = 0; i < codeLength; i++) {
			buffer.append(CHARS[random.nextInt(CHARS.length)]);
		}
		return buffer.toString();
	}

	private void drawLine(Canvas canvas, Paint paint) {
		int color = randomColor();
		int startX = random.nextInt(width);
		int startY = random.nextInt(height);
		int stopX = random.nextInt(width);
		int stopY = random.nextInt(height);
		paint.setStrokeWidth(1);
		paint.setColor(color);
		canvas.drawLine(startX, startY, stopX, stopY, paint);
	}

	private int randomColor() {
		return randomColor(1);
	}

	private int randomColor(int rate) {
		int red = random.nextInt(256) / rate;
		int green = random.nextInt(256) / rate;
		int blue = random.nextInt(256) / rate;
		return Color.rgb(red, green, blue);
	}

	private void randomTextStyle(Paint paint) {
		int color = randomColor();
		paint.setColor(color);
		paint.setFakeBoldText(random.nextBoolean());  //true为粗体,false为非粗体
		float skewX = random.nextInt(11) / 10;
		skewX = random.nextBoolean() ? skewX : -skewX;
		paint.setTextSkewX(skewX); //float类型參数,负数表示右斜。整数左斜
//		paint.setUnderlineText(true); //true为下划线,false为非下划线
//		paint.setStrikeThruText(true); //true为删除线,false为非删除线
	}

	private void randomPadding() {
		padding_left += base_padding_left + random.nextInt(range_padding_left);
		padding_top = base_padding_top + random.nextInt(range_padding_top);
	}
}

代码已经贴完成。能够试着做一下。

版权声明:本文博客原创文章。博客,未经同意,不得转载。

时间: 2024-11-15 00:47:01

android client随机验证码生成函数的相关文章

Android实现随机验证码——自定义View

一.问题描述 熟悉web开发中童鞋们都知道为了防止恶意破解.恶意提交.刷票等我们在提交表单数据时,都会使用随机验证码功能.在Android应用中我们同样需要这一功能,该如何实现呢,下面我们就自定义一个随机验证码View控件实现这一需求,并且具备通用性,需要的时候在界面中直接加入这个View组件即可. 二.案例介绍 案例运行效果 案例所涉及组件 1.CheckView 自定义的验证码控件,主要重写onDraw方法实现图形绘制 2.Config:用于对验证码控件参数的配置,像画点点数.划线数.背景颜

Android生成随机验证码技术

在Android客户端应用开发中,往往需要短信验证码或者随机验证码来限制用户的操作或者认证.短信验证码是为了对用户进行认证,主要通过Http协议等通信协议实现;随机验证码很大程度是为限制或者提示用户相关操作.随机验证码的验证主要有两种方式:请求服务器验证,本地验证.比如,在用户向服务器发送登录请求,我们通过随机验证码(本地验证即可)限制用户随意按请求按钮,演示如下: 源码实战 (1)src/.../createCode.java 功能:使用Random.Canvas.Paint及其相关方法创建包

android 客户端生成随机验证码的实现

由于项目中要用到验证码,自己找了些资料,试着就把这个验证码给做了出来,代码不是很多,比较的简单,下面给大家看看我是怎么实现该功能的: 源码地址下载:http://download.csdn.net/detail/u014608640/7268905 首先当然是写XML咯,贴上代码 <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" andr

生成6位的随机验证码

要求:生成6位的字母和数字组成的随机验证码. 实例1: 1 import random 2 identify_code='' 3 for i in range(1): 4 for j in range(6): 5 if i==j: 6 code=chr(random.randint(65,90)) 7 else: 8 code=random.randint(0,9) 9 identify_code+=str(code) 10 11 print(identify_code) 实例2: 1 impo

Django之路 - 实现登录随机验证码

登录验证码是每个网站登录时的基本标配,网上也有很多相应的文章, 但是从生成验证码到 应用到自己的网站上的全步骤,并没有看到很多, 为了节约大家的时间,我把整体步骤写下来, 即拿即用哈 1. 生成随机验证码  随机验证码代码 2. 如何应用到你的django项目中 整个验证码的流程如下 用户访问登录页面,你的后台程序在给用户返回登录页面时,同时生成了验证码图片 用户输入账户信息和验证码数字,提交表单 后台判断用户输入的验证码和你生成的图片信息是否一致,如果一致,就代表验证码是没有问题的 问题就卡在

学习python:实例2.用PIL生成随机验证码

效果: 代码: # 生成随机验证码图片 import string from random import randint, sample from PIL import Image, ImageDraw, ImageFont, ImageFilter # Image 负责处理图片 # ImageDraw 画笔 # ImageFont 文字 # ImageFileter 滤镜 # 定义变量 img_size = (150,50)        # 定义画布大小 img_rgb = (255,255

输出随机验证码图片

1 /** 2 * //输出随机验证码图片:CAPTCHA图像 3 */ 4 public class ServletDemo1 extends HttpServlet { 5 private static final long serialVersionUID = 1L; 6 7 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOEx

随机验证码

import java.awt.image.BufferedImage; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.io.IOException; import java.util.Random; import javax.imageio.ImageIO; import javax.servlet.ServletExc

1. Getting Started and Create an Android Client

1. Getting Started and Create an Android Client Retrofit tutorial 什么是 Retrofit 如何申明请求 准备 Android 项目 使用 Gradle 或 Maven 定义依赖 Retrofit 1.9 的依赖定义 pom.xml build.gradle Retrofit 2.0 的依赖定义 pom.xml build.gradle 持续发展的 Android 客户端 服务生成器 Retrofit 1.9 Retrofit 2