热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

Android仿滴滴出行验证码输入框功能实例代码

最近项目经理交给我们组一个类似滴滴出行填写验证码的弹框功能,拿到这个项目需求真是把我忙晕了,下面通过本文给大家分享Android仿滴滴出行验证码输入框功能实例代码,需要的朋友参考下吧

最近公司项目中有一个类似滴滴出行填写验证码的弹框,下面是我撸出来的效果:

 

中间的那个输入密码的6个框框其实就是用shape画的背景,通过监听EditText获取焦点来改变背景,废话少说,直接上代码吧。

2、效果实现

代码内容比较简单,所以大家可以直接看代码

VerificationCodeInput.java

/**
  * @author hydCoder
  * @date 2017/9/22 14:39
  * @desc 输入验证码的自定义view
  * @email hyd_coder@163.com
  */
public class VerificationCodeInput extends LinearLayout implements TextWatcher, View.OnKeyListener{
private final static String TYPE_NUMBER = "number";
private final static String TYPE_TEXT = "text";
private final static String TYPE_PASSWORD = "password";
private final static String TYPE_PHOnE= "phone";
private static final String  TAG      = "VerificationCodeInput";
private       int   box      = 4;
private       int   boxWidth   = 80;
private       int   boxHeight   = 80;
private       int   childHPadding = 14;
private       int   childVPadding = 14;
private       String  inputType   = TYPE_NUMBER;
private       Drawable boxBgFocus  = null;
private       Drawable boxBgNormal  = null;
private Listener listener;
private boolean    focus      = false;
private List mEditTextList  = new ArrayList<>();
private int      currentPosition = 0;
public VerificationCodeInput(Context context, AttributeSet attrs) {
  super(context, attrs);
  TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.vericationCodeInput);
  box = a.getInt(R.styleable.vericationCodeInput_box, 4);
  childHPadding = (int) a.getDimension(R.styleable.vericationCodeInput_child_h_padding, 0);
  childVPadding = (int) a.getDimension(R.styleable.vericationCodeInput_child_v_padding, 0);
  boxBgFocus = a.getDrawable(R.styleable.vericationCodeInput_box_bg_focus);
  boxBgNormal = a.getDrawable(R.styleable.vericationCodeInput_box_bg_normal);
  inputType = a.getString(R.styleable.vericationCodeInput_inputType);
  boxWidth = (int) a.getDimension(R.styleable.vericationCodeInput_child_width, boxWidth);
  boxHeight = (int) a.getDimension(R.styleable.vericationCodeInput_child_height, boxHeight);
  initViews();
}
@Override
protected void onAttachedToWindow() {
  super.onAttachedToWindow();
}
@Override
protected void onDetachedFromWindow() {
  super.onDetachedFromWindow();
}
private void initViews() {
  for (int i = 0; i = 0; i--) {
    editText = (EditText) getChildAt(i);
    if (editText.getText().length() == 1) {
      editText.requestFocus();
      setBg(mEditTextList.get(i),true);
      //setBg(mEditTextList.get(i-1),true);
      editText.setSelection(1);
      return;
    }
  }
}
private void focus() {
  int count = getChildCount();
  EditText editText ;
  for (int i = 0; i 0) {
    View child = getChildAt(0);
    int cHeight = child.getMeasuredHeight();
    int cWidth = child.getMeasuredWidth();
    int maxH = cHeight + 2 * childVPadding;
    int maxW = (cWidth + childHPadding) * box + childHPadding;
    setMeasuredDimension(resolveSize(maxW, widthMeasureSpec),
        resolveSize(maxH, heightMeasureSpec));
  }
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
  int childCount = getChildCount();
  for (int i = 0; i = 1 && currentPosition != mEditTextList.size() - 1) {
    currentPosition++;
    mEditTextList.get(currentPosition).requestFocus();
    setBg(mEditTextList.get(currentPosition),true);
    setBg(mEditTextList.get(currentPosition-1),false);
  }
}
@Override
public void afterTextChanged(Editable s) {
  if (s.length() == 0) {
  } else {
    focus();
    checkAndCommit();
  }
}
@Override
public boolean onKey(View view, int keyCode, KeyEvent event) {
  EditText editText = (EditText) view;
  if (keyCode == KeyEvent.KEYCODE_DEL && editText.getText().length() == 0) {
    int action = event.getAction();
    if (currentPosition != 0 && action == KeyEvent.ACTION_DOWN) {
      currentPosition--;
      mEditTextList.get(currentPosition).requestFocus();
      setBg(mEditTextList.get(currentPosition),true);
      setBg(mEditTextList.get(currentPosition+1),false);
      mEditTextList.get(currentPosition).setText("");
    }
  }
  return false;
}
public interface Listener {
  void onComplete(String content);
}
} ··· styles.xml里添加自定义属性

  
  
  
  
  
  
  
  
  


输入框获取焦点时的背景

verification_edit_bg_focus.xml





输入框没有获取焦点时的背景

verification_edit_bg_normal.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>

  
  
  

在界面中使用

然后对它设置输入完成后的监听

verificationCodeInput.setOnCompleteListener(new VerificationCodeInput.Listener() {
    @Override
    public void onComplete(String content) {
      btn_confirm.setEnabled(true);
      btn_confirm.setBackgroundResource(R.drawable.btn_bg_shape_enable);
      btn_confirm.setTextColor(Color.parseColor("#e4c16a"));
      codeNum = content;
    }
  });

总结

以上所述是小编给大家介绍的Android仿滴滴出行验证码输入框功能实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!


推荐阅读
  • RecyclerView初步学习(一)
    RecyclerView初步学习(一)ReCyclerView提供了一种插件式的编程模式,除了提供ViewHolder缓存模式,还可以自定义动画,分割符,布局样式,相比于传统的ListVi ... [详细]
  • Android LED 数字字体的应用与实现
    本文介绍了一种适用于 Android 应用的 LED 数字字体(digital font),并详细描述了其在 UI 设计中的应用场景及其实现方法。这种字体常用于视频、广告倒计时等场景,能够增强视觉效果。 ... [详细]
  • Android 九宫格布局详解及实现:人人网应用示例
    本文深入探讨了人人网Android应用中独特的九宫格布局设计,解析其背后的GridView实现原理,并提供详细的代码示例。这种布局方式不仅美观大方,而且在现代Android应用中较为少见,值得开发者借鉴。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • 解决微信电脑版无法刷朋友圈问题:使用安卓远程投屏方案
    在工作期间想要浏览微信和朋友圈却不太方便?虽然微信电脑版目前不支持直接刷朋友圈,但通过远程投屏技术,可以轻松实现在电脑上操作安卓设备的功能。 ... [详细]
  • 本文详细介绍了 Java 中 org.apache.xmlbeans.SchemaType 类的 getBaseEnumType() 方法,提供了多个代码示例,并解释了其在不同场景下的使用方法。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • PHP 5.2.5 安装与配置指南
    本文详细介绍了 PHP 5.2.5 的安装和配置步骤,帮助开发者解决常见的环境配置问题,特别是上传图片时遇到的错误。通过本教程,您可以顺利搭建并优化 PHP 运行环境。 ... [详细]
  • 构建基于BERT的中文NL2SQL模型:一个简明的基准
    本文探讨了将自然语言转换为SQL语句(NL2SQL)的任务,这是人工智能领域中一项非常实用的研究方向。文章介绍了笔者在公司举办的首届中文NL2SQL挑战赛中的实践,该比赛提供了金融和通用领域的表格数据,并标注了对应的自然语言与SQL语句对,旨在训练准确的NL2SQL模型。 ... [详细]
  • 本文介绍了如何使用JQuery实现省市二级联动和表单验证。首先,通过change事件监听用户选择的省份,并动态加载对应的城市列表。其次,详细讲解了使用Validation插件进行表单验证的方法,包括内置规则、自定义规则及实时验证功能。 ... [详细]
  • 数据库内核开发入门 | 搭建研发环境的初步指南
    本课程将带你从零开始,逐步掌握数据库内核开发的基础知识和实践技能,重点介绍如何搭建OceanBase的开发环境。 ... [详细]
  • 本文总结了在使用Ionic 5进行Android平台APK打包时遇到的问题,特别是针对QRScanner插件的改造。通过详细分析和提供具体的解决方法,帮助开发者顺利打包并优化应用性能。 ... [详细]
  • 理解存储器的层次结构有助于程序员优化程序性能,通过合理安排数据在不同层级的存储位置,提升CPU的数据访问速度。本文详细探讨了静态随机访问存储器(SRAM)和动态随机访问存储器(DRAM)的工作原理及其应用场景,并介绍了存储器模块中的数据存取过程及局部性原理。 ... [详细]
  • MySQL中枚举类型的所有可能值获取方法
    本文介绍了一种在MySQL数据库中查询枚举(ENUM)类型字段所有可能取值的方法,帮助开发者更好地理解和利用这一数据类型。 ... [详细]
author-avatar
拍友2502926823
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有