中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android仿支付寶密碼輸入框效果

發布時間:2020-09-07 23:43:16 來源:腳本之家 閱讀:143 作者:zhoushenxian 欄目:移動開發

本文實例為大家分享了android仿支付寶密碼輸入框展示的具體代碼,供大家參考,具體內容如下

這個沒什么好分析的,就是一些基本的繪制什么線,矩形什么的,看代碼更具體

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 >
 <com.example.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

package com.example.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) {
  super.onCreate(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輸入框

package com.example.custompasswordview;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.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) {
  super.onDraw(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) {
  super.onTextChanged(text, start, lengthBefore, lengthAfter);
  this.textLength = text.toString().length();
  if(textLength==6){
   Toast.makeText(getContext(),"您設置的密碼為"+text,Toast.LENGTH_SHORT).show();
  }
  invalidate();
 }
 public void setEmpeyText(){
  setText("");
  invalidate();
 }
}


效果:

android仿支付寶密碼輸入框效果

github:https://github.com/zhouguizhi/ZhiFuBaoPwdView

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天等县| 景德镇市| 潢川县| 荆门市| 海淀区| 临海市| 灌南县| 历史| 南丰县| 敦化市| 鄂尔多斯市| 肥城市| 灵台县| 东阿县| 修文县| 阿勒泰市| 全南县| 普安县| 南华县| 广西| 江城| 区。| 龙里县| 柯坪县| 海南省| 长葛市| 准格尔旗| 玉田县| 台中县| 大竹县| 松溪县| 宽甸| 诸暨市| 和静县| 海盐县| 左权县| 万州区| 柯坪县| 靖江市| 宜章县| 乐业县|