android 仿支付宝密码输入框

阅读: 评论:0

android 仿支付宝密码输入框

android 仿支付宝密码输入框

这个没什么好分析的,就是一些基本的绘制什么线,矩形什么的,看代码更具体

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android=""
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    &le.custompasswordview.PasswordView
        android:id="@+id/passwordview"
        android:layout_width="match_parent"
        android:layout_height="105px"
        android:layout_marginTop="100px"
        android:layout_marginLeft="20px"
        android:layout_marginRight="20px"
        android:inputType="number"
        android:cursorVisible="false"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:enabled="true"
        android:clickable="true"
         />
    <Button
        android:id="@+id/btn_pass_reset"
        android:layout_width="250px"
        android:layout_height="90px"
        android:text="重置"
        android:layout_below="@id/passwordview"
        android:layout_marginTop="20px"
        android:layout_marginLeft="40px"
        android:gravity="center"
        />
</RelativeLayout>
MainActivity.java

ample.custompasswordview;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {private Button btn_pass_reset;
    private PasswordView passwordview;
    @Override
    protected void onCreate(Bundle savedInstanceState) {Create(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn_pass_reset = (Button) findViewById(R.id.btn_pass_reset);
        passwordview = (PasswordView) findViewById(R.id.passwordview);
        btn_pass_reset.setOnClickListener(new View.OnClickListener() {@Override
            public void onClick(View v) {passwordview.setEmpeyText();
            }});
    }
}
自定义EditText输入框

ample.custompasswordview;
t.Context;
aphics.Canvas;
aphics.Color;
aphics.Paint;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.EditText;
import android.widget.Toast;

/**
 * Created by Adminis on 2016/8/7.
 */
public class PasswordView extends EditText {private static final String TAG ="PasswordView" ;
    private Paint bordPaint;//外框画笔
    private Paint linePaint;//线 的画笔
    private Paint passTextPaint;//密码画笔
    private int width;
    private int height;
    private int passwordLength = 6;//代码的长度
    private int textLength;
    private int radius = 15;
    public PasswordView(Context context) {this(context,null);
    }public PasswordView(Context context, AttributeSet attrs) {this(context, attrs,0);
    }public PasswordView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);
        initPaint();
    }/**
     * 初始化画笔
      */
    private void initPaint() {setFocusable(true);
        bordPaint = new Paint();
        bordPaint.setStrokeWidth(8);
        bordPaint.setColor(Color.WHITE);
        bordPaint.setStyle(Paint.Style.FILL);

        linePaint = new Paint();
        linePaint.setColor(Color.parseColor("#838B8B"));
        linePaint.setStrokeWidth(4);

        passTextPaint = new Paint();
        passTextPaint.setColor(Color.parseColor("#000000"));
        passTextPaint.setStrokeWidth(12);

    }@Override
    protected void onDraw(Canvas canvas) {Draw(canvas);
        height = getMeasuredHeight();
        width = getMeasuredWidth();
        drawRoundRect(canvas);
        drawLine(canvas);
        drawTextPass(canvas);
    }/**
     * 绘制密码
     * @param canvas
     */
    private void drawTextPass(Canvas canvas) {float cx, cy = height/ 2;
        float half = width / passwordLength / 2;
        for(int i = 0; i < textLength; i++) {cx = width * i / passwordLength + half;
            canvas.drawCircle(cx, cy, radius, passTextPaint);
        }}/**
     * 绘制线
     * @param canvas
     */
    private void drawLine(Canvas canvas) {for (int i = 1; i < passwordLength; i++) {float x = width * i / passwordLength;
            canvas.drawLine(x, 12, x, height-12, linePaint);
        }}/**
     * 绘制背景
     * @param canvas
     */
    private void drawRoundRect(Canvas canvas) {canvas.drawRoundRect(0,0,width,height,12,12,bordPaint);
    }@Override
    protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {TextChanged(text, start, lengthBefore, lengthAfter);
        Length = String().length();
        if(textLength==6){Toast.makeText(getContext(),"您设置的密码为"+text,Toast.LENGTH_SHORT).show();
        }invalidate();
    }public void setEmpeyText(){setText("");
        invalidate();
    }
}
效果:


github:

本文发布于:2024-02-01 11:45:25,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170675912936366.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:支付宝   输入框   密码   android
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23