Android仿微信或支付宝方块密码输入框

在用到支付类或者验证类app时,都有一个简密的输入框。百度了下有个不错的帖子,点击打开链接

不过自己也写了个简单的类似的。

懒得运行,直接截layout.xml的效果图先。

布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="#ffffff"
  android:paddingBottom="20dp"
  android:paddingTop="30dp" > 

  <TextView
    android:id="@+id/txtTitle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="请输入验证码"
    android:textStyle="bold"
    android:textSize="22sp" /> 

<LinearLayout
  android:id="@+id/layout"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/txtTitle"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="10dp"
  android:orientation="horizontal" > 

  <TextView
    android:id="@+id/t1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/i1"
    android:gravity="center"
    android:inputType="number"
    android:lines="1"
    android:maxLines="1" /> 

  <TextView
    android:id="@+id/t2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/i1"
    android:gravity="center"
    android:inputType="number"
    android:lines="1"
    android:maxLines="1" />
  <TextView
    android:id="@+id/t3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/i1"
    android:gravity="center"
    android:inputType="number"
    android:lines="1"
    android:maxLines="1" /> 

  <TextView
    android:id="@+id/t4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/i2"
    android:gravity="center"
    android:inputType="number"
    android:lines="1"
    android:maxLines="1" /> 

</LinearLayout> 

<EditText
  android:id="@+id/editHide"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignBottom="@+id/layout"
  android:layout_alignLeft="@+id/layout"
  android:layout_alignRight="@+id/layout"
  android:layout_alignTop="@+id/layout"
  android:layout_weight="1"
  android:background="#00000000"
  android:cursorVisible="false"
  android:ems="10"
  android:inputType="number"
  android:maxLength="4"
  android:textColor="#00000000" /> 

<LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@+id/layout"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="20dp" > 

  <Button
    android:id="@+id/verifycode_ok"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#fa8d70"
    android:layout_marginRight="30dp"
    android:textColor="#ffffff"
    android:text="确定" /> 

  <Button
    android:id="@+id/verifycode_cancel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="30dp"
     android:background="@color/index_time_but"
    android:textColor="#ffffff"
    android:text="取消" /> 

</LinearLayout> 

</RelativeLayout> 

代码:

import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView; 

public class MainActivity extends Activity { 

  TextView t1, t2, t3, t4, et; 

  String key = ""; 

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.verifycode);
    t1 = (TextView) findViewById(R.id.t1);
    t2 = (TextView) findViewById(R.id.t2);
    t3 = (TextView) findViewById(R.id.t3);
    t4 = (TextView) findViewById(R.id.t4);
    et = (EditText) findViewById(R.id.editText1);
    et.addTextChangedListener(tw);
  } 

  void setKey() {
    char[] arr = key.toCharArray();
    t1.setText("");
    t2.setText("");
    t3.setText("");
    t4.setText("");
    for (int i = 0; i < arr.length; i++) {
      if (i == 0) {
        t1.setText(String.valueOf(arr[0]));
      } else if (i == 1) {
        t2.setText(String.valueOf(arr[1]));
      } else if (i == 2) {
        t3.setText(String.valueOf(arr[2]));
      } else if (i == 3) {
        t4.setText(String.valueOf(arr[3]));
      }
    }
  } 

  TextWatcher tw = new TextWatcher() {
    @Override
    public void onTextChanged(CharSequence s, int start, int before,
        int count) { 

    } 

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
        int after) { 

    } 

    @Override
    public void afterTextChanged(Editable s) {
      key = s.toString();
      setKey();
    }
  };
} 

好哒,就这样了,运行就有效果了。没有什么自定义,没有什么第三方。

当然。如果你要弹窗形式的话,也一样,加下面的就能弹窗了

final AlertDialog dialog = new AlertDialog.Builder(mContext).create();
   dialog.show();
   dialog.getWindow().setContentView(R.layout.verifycode);t1 = (TextView) dialog.findViewById(R.id.t1);
   t2 = (TextView) dialog.findViewById(R.id.t2);
   t3 = (TextView) dialog.findViewById(R.id.t3);
   t4 = (TextView) dialog.findViewById(R.id.t4); 

后期有时间再补上项目DOME。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android自定义密码输入框和数字键盘

    实现了一个自定义的密码输入框和自定义数字键盘,用作用户支付密码设置界面.先上效果图如下,方格样式,以及点击空白处隐藏软键盘. 控件实现清单: 1)集成于EditText的输入框控件:PasswordInputView.java 2)数字键盘工具类:NumKeyboardUtil.java 3)xml文件:number.xml 4)attrs样式 5)layout文件 具体内容: PasswordInputView.java public class PasswordInputView exten

  • Android文本输入框(EditText)输入密码时显示与隐藏

    代码很简单,这里就不多废话了. 复制代码 代码如下: package cc.c; import android.app.Activity; import android.os.Bundle; import android.text.Selection; import android.text.Spannable; import android.text.method.HideReturnsTransformationMethod; import android.text.method.Passw

  • Android的支付密码输入框实现浅析

    先看一下效果图 实现思路: 变成点的控件不是TextView和EditText而是Imageview.首先写一个RelativeLayout里边包含6个ImageView和一个EditText(EditText要覆盖ImageView)将EditText的背景设置成透明. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas

  • Android 仿支付宝密码输入框效果

    模仿支付宝输入效果,实现很简单,就是画个矩形框和圆形,其他的通过组合view来实现所有功能,虽然简单但是封装起来,方便以后使用,也分享一下,希望对别人也有点帮助. 1.如何使用,可以设置自己的进入退出动画,不设置则没有动画效果,自己觉得封装之后还是非常用好的. private MyInputPwdUtil myInputPwdUtil; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(sa

  • Android仿支付宝、京东的密码键盘和输入框

    首先看下效果图 一:布局代码 键盘由0~9的数字,删除键和完成键组成,也可以根据需求通过GridView适配器的getItemViewType方法来定义.点击键的时候背景有变色的效果. 密码输入框由六个EditText组成,每个输入框最对能输入一个数字,监听最后一个输入框来完成密码输入结束的监听. 二:键盘 键盘中的主要逻辑处理,键盘样式,item的点击事件 @Override public int getViewTypeCount() { return 2; } @Override publi

  • Android仿微信/支付宝密码输入框

    在用到支付类app时,都有一个简密的输入框..开始实现的时候思路有点问题,后来到github上搜了下,找到了一个开源的库看起来相当的牛逼,,来个地址先: https://github.com/Jungerr/GridPasswordView 效果图: 这个开源库我研究了之后,又有了自己的一个思路:来个假的简密框---底部放一个EditTextView,顶部放置6个ImageView的原点,控制他们的显隐来实现这个简密宽 开发步骤: 1 布局 <?xml version="1.0"

  • Android实现动态显示或隐藏密码输入框的内容

    本文实例展示了Android实现动态显示或隐藏密码输入框内容的方法,分享给大家供大家参考之用.具体方法如下: 该功能可通过设置EditText的setTransformationMethod()方法来实现隐藏密码或者显示密码. 示例代码如下: private Button mBtnPassword; private EditText mEtPassword; private boolean mbDisplayFlg = false; /** Called when the activity is

  • Android 实现密码输入框动态明文/密文切换显示效果

    在项目中遇到需要提供给用户一个密码输入框明文/密文切换显示的需求,在网上搜索一圈都没有发现完整的实现,幸而找到了一个实现的思路. 先上效果图,看了录制屏幕gif的教程,无奈手机太旧系统版本不支持,只有上静态图了. 密码输入框动态明文/密文切换显示 当看到这个效果图的时候,相信你已经猜到大概的思路了.没错就是为我们的EditText设置drawableRight,图中的眼睛图片还有一个配对的,是从martial designde的网站下载的,当用户点击drawableRight时,先动态的改变dr

  • Android仿支付宝支付密码输入框

    本文实例为大家分享了Android实现一个仿支付宝支付密码的输入框,主要实现如下: PasswordView.java package com.jackie.alipay.password; import android.annotation.TargetApi; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphic

  • android仿微信支付宝的支付密码输入框示例

    大家好,我是狸小华,萌汉子一枚.今天给大家带来的是仿微信/支付宝的密码输入框.这个效果也出来有一段时间了,所以搜索一下还是有不少的网友实现,但是,但是!经过一番查看后,我发现他们的实现分为两大类. 一,直接继承EditText,然后在ondraw里面做文章:二,EditText外面包一个viewGroup.我不喜欢这两种实现方式,觉着有些臃肿了,所以我详细介绍下我的实现方式:直接继承View,获取用户的输入,然后draw出来. 我们实现的是上面的密码输入框,这个键盘...系统自带的哦,调用用户输

随机推荐