欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android仿滴滴出行驗(yàn)證碼輸入框功能實(shí)例代碼

 更新時(shí)間:2017年12月18日 09:15:02   作者:hydCoder  
最近項(xiàng)目經(jīng)理交給我們組一個(gè)類似滴滴出行填寫驗(yàn)證碼的彈框功能,拿到這個(gè)項(xiàng)目需求真是把我忙暈了,下面通過本文給大家分享Android仿滴滴出行驗(yàn)證碼輸入框功能實(shí)例代碼,需要的朋友參考下吧

最近公司項(xiàng)目中有一個(gè)類似滴滴出行填寫驗(yàn)證碼的彈框,下面是我擼出來的效果:

 

中間的那個(gè)輸入密碼的6個(gè)框框其實(shí)就是用shape畫的背景,通過監(jiān)聽EditText獲取焦點(diǎn)來改變背景,廢話少說,直接上代碼吧。

2、效果實(shí)現(xiàn)

代碼內(nèi)容比較簡單,所以大家可以直接看代碼

VerificationCodeInput.java

/**
  * @author hydCoder
  * @date 2017/9/22 14:39
  * @desc 輸入驗(yàn)證碼的自定義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<EditText> 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 < box; i++) {
    EditText editText = new EditText(getContext());
    LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(boxWidth, boxHeight);
    layoutParams.bottomMargin = childVPadding;
    layoutParams.topMargin = childVPadding;
    layoutParams.leftMargin = childHPadding;
    layoutParams.rightMargin = childHPadding;
    layoutParams.gravity = Gravity.CENTER;
    editText.setOnKeyListener(this);
    if(i == 0)
      setBg(editText, true);
    else setBg(editText, false);
    editText.setTextColor(Color.BLACK);
    editText.setLayoutParams(layoutParams);
    editText.setGravity(Gravity.CENTER);
    editText.setInputType(EditorInfo.TYPE_CLASS_PHONE);
    editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(1)});
    if (TYPE_NUMBER.equals(inputType)) {
      editText.setInputType(InputType.TYPE_CLASS_NUMBER);
    } else if (TYPE_PASSWORD.equals(inputType)){
      editText.setTransformationMethod(PasswordTransformationMethod.getInstance());
    } else if (TYPE_TEXT.equals(inputType)){
      editText.setInputType(InputType.TYPE_CLASS_TEXT);
    } else if (TYPE_PHONE.equals(inputType)){
      editText.setInputType(InputType.TYPE_CLASS_PHONE);
    }
    editText.setId(i);
    editText.setEms(1);
    editText.addTextChangedListener(this);
    addView(editText,i);
    mEditTextList.add(editText);
  }
}
private void backFocus() {
  int count = getChildCount();
  EditText editText ;
  for (int i = count-1; 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< count; i++) {
    editText = (EditText) getChildAt(i);
    if (editText.getText().length() < 1) {
      editText.requestFocus();
      return;
    }
  }
}
private void setBg(EditText editText, boolean focus) {
  if (boxBgNormal != null && !focus) {
    editText.setBackground(boxBgNormal);
  } else if (boxBgFocus != null && focus) {
    editText.setBackground(boxBgFocus);
  }
}
private void setBg(){
  int count = getChildCount();
  EditText editText ;
  for(int i = 0; i< count; i++){
    editText = (EditText) getChildAt(i);
    if (boxBgNormal != null && !focus) {
      editText.setBackground(boxBgNormal);
    } else if (boxBgFocus != null && focus) {
      editText.setBackground(boxBgFocus);
    }
  }
}
private void checkAndCommit() {
  StringBuilder stringBuilder = new StringBuilder();
  boolean full = true;
  for (int i = 0 ;i < box; i++){
    EditText editText = (EditText) getChildAt(i);
    String content = editText.getText().toString();
    if ( content.length() == 0) {
      full = false;
      break;
    } else {
      stringBuilder.append(content);
    }
  }
  if (full){
    if (listener != null) {
      listener.onComplete(stringBuilder.toString());
      setEnabled(false);
    }
  }
}
@Override
public void setEnabled(boolean enabled) {
  int childCount = getChildCount();
  for (int i = 0; i < childCount; i++) {
    View child = getChildAt(i);
    child.setEnabled(enabled);
  }
}
public void setOnCompleteListener(Listener listener){
  this.listener = listener;
}
@Override
public LayoutParams generateLayoutParams(AttributeSet attrs) {
  return new LinearLayout.LayoutParams(getContext(), attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  int count = getChildCount();
  for (int i = 0; i < count; i++) {
    View child = getChildAt(i);
    this.measureChild(child, widthMeasureSpec, heightMeasureSpec);
  }
  if (count > 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 < childCount; i++) {
    View child = getChildAt(i);
    child.setVisibility(View.VISIBLE);
    int cWidth = child.getMeasuredWidth();
    int cHeight = child.getMeasuredHeight();
    int cl = (i) * (cWidth + childHPadding);
    int cr = cl + cWidth;
    int ct = childVPadding;
    int cb = ct + cHeight;
    child.layout(cl, ct, cr, cb);
  }
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
  if (start == 0 && count >= 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里添加自定義屬性
<declare-styleable name="vericationCodeInput">
  <attr name="box" format="integer" />
  <attr name="child_h_padding" format="dimension"/>
  <attr name="child_v_padding" format="dimension"/>
  <attr name="child_width" format="dimension"/>
  <attr name="child_height" format="dimension"/>
  <attr name="padding" format="dimension"/>
  <attr name="box_bg_focus" format="reference"/>
  <attr name="box_bg_normal" format="reference"/>
  <attr name="inputType" format="string"/>
</declare-styleable>

輸入框獲取焦點(diǎn)時(shí)的背景

verification_edit_bg_focus.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<corners android:radius="8dip" />
<stroke
  android:width="2dip"
  android:color="@color/auxiliary_color" />
</shape>

輸入框沒有獲取焦點(diǎn)時(shí)的背景

verification_edit_bg_normal.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="@color/white" />
  <corners android:radius="8dip" />
  <stroke
    android:width="1dip"
    android:color="@color/divide_color"/>
</shape>

在界面中使用

<com.sdalolo.genius.ui.view.VerificationCodeInput
  android:digits="1234567890"
  android:id="@+id/verificationCodeInput"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginTop="25dp"
  android:layout_gravity="center_horizontal"
  ver:box="6"
  ver:box_bg_normal="@drawable/verification_edit_bg_normal"
  ver:box_bg_focus="@drawable/verification_edit_bg_focus"
  ver:child_h_padding="5dp"
  android:layout_centerInParent="true"
  android:layout_marginBottom="16dp"/>

然后對(duì)它設(shè)置輸入完成后的監(jiān)聽

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;
    }
  });

總結(jié)

以上所述是小編給大家介紹的Android仿滴滴出行驗(yàn)證碼輸入框功能實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

  • Android提高之藍(lán)牙隱藏API探秘

    Android提高之藍(lán)牙隱藏API探秘

    這篇文章主要介紹了Android的藍(lán)牙隱藏API功能,在Android項(xiàng)目開發(fā)中有一定的借鑒價(jià)值,需要的朋友可以參考下
    2014-08-08
  • android viewpaper實(shí)例探討

    android viewpaper實(shí)例探討

    本文將提供一個(gè)android viewpaper實(shí)例實(shí)現(xiàn)過程,需要了解更多的朋友可以參考下
    2012-12-12
  • Flutter實(shí)現(xiàn)笑嘻嘻的動(dòng)態(tài)表情的示例代碼

    Flutter實(shí)現(xiàn)笑嘻嘻的動(dòng)態(tài)表情的示例代碼

    這篇文章主要為大家介紹了如何利用Flutter實(shí)現(xiàn)笑嘻嘻的動(dòng)態(tài)表情,文中的示例代碼講解詳細(xì),對(duì)我們學(xué)習(xí)Flutter有一定幫助,感興趣的可以了解一下
    2022-04-04
  • Android VideoView類實(shí)例講解

    Android VideoView類實(shí)例講解

    本文主要介紹Android VideoView類,這里對(duì)VideoView類詳細(xì)說明了使用方法,以及示例代碼,有興趣的朋友可以參考下,希望能幫助Android 開發(fā)的朋友
    2016-08-08
  • Kotlin中Object關(guān)鍵字的使用示例介紹

    Kotlin中Object關(guān)鍵字的使用示例介紹

    在Kotlin中object是一個(gè)特殊的關(guān)鍵字。主要用于聲明一個(gè)類的同時(shí)創(chuàng)建這個(gè)類的對(duì)象(例如單例)。在Kotlin中它有三個(gè)方面的應(yīng)用:對(duì)象表達(dá)式,對(duì)象聲明和伴生對(duì)象
    2022-09-09
  • android監(jiān)聽返回按鈕事件的方法

    android監(jiān)聽返回按鈕事件的方法

    這篇文章主要介紹了android監(jiān)聽返回按鈕事件的方法,涉及Android事件監(jiān)聽的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-10-10
  • Android實(shí)現(xiàn)彈出列表、單選、多選框

    Android實(shí)現(xiàn)彈出列表、單選、多選框

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)彈出列表、單選、多選框,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-10-10
  • Android 手機(jī)屏幕適配解決辦法

    Android 手機(jī)屏幕適配解決辦法

    這篇文章主要介紹了Android 手機(jī)屏幕適配的相關(guān)資料,在開發(fā)Android 手機(jī)開發(fā)的時(shí)候經(jīng)常會(huì)有很多手機(jī)品牌和手機(jī)屏幕尺寸問題,需要的朋友可以參考下
    2016-10-10
  • 淺談Android app開發(fā)中Fragment的Transaction操作

    淺談Android app開發(fā)中Fragment的Transaction操作

    這篇文章主要介紹了Android app開發(fā)中Fragment的Transaction操作,包括Transaction和Fragment的生命周期的聯(lián)系等內(nèi)容,需要的朋友可以參考下
    2016-02-02
  • Android屏蔽軟鍵盤自動(dòng)彈出的解決方案

    Android屏蔽軟鍵盤自動(dòng)彈出的解決方案

    在編輯框輸入內(nèi)容時(shí)會(huì)彈出軟鍵盤,而手機(jī)屏幕區(qū)域有限往往會(huì)遮住輸入界面,怎么實(shí)現(xiàn)這種效果呢?下面小編給大家分享了Android屏蔽軟鍵盤自動(dòng)彈出的解決方案,需要的朋友參考下吧
    2017-01-01

最新評(píng)論