android仿支付寶密碼輸入框效果
更新時間:2017年12月04日 09:07:16 作者:zhoushenxian
這篇文章主要為大家詳細介紹了android仿支付寶密碼輸入框效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了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(); } }
效果:
github:https://github.com/zhouguizhi/ZhiFuBaoPwdView
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- Android使用TextInputLayout創(chuàng)建登陸頁面
- Android實現(xiàn)動態(tài)顯示或隱藏密碼輸入框的內容
- Android文本輸入框(EditText)輸入密碼時顯示與隱藏
- Android軟鍵盤擋住輸入框的終極解決方案
- Android UI設計系列之自定義EditText實現(xiàn)帶清除功能的輸入框(3)
- Android 仿支付寶密碼輸入框效果
- android仿微信支付寶的支付密碼輸入框示例
- android輸入框與文本框加滾動條scrollview示例
- Android輸入法彈出時覆蓋輸入框問題的解決方法
- android仿支付寶、微信密碼輸入框效果
- TextInputLayout輸入框控件的懸浮標簽
相關文章
Android?Jetpack庫剖析之ViewModel組件篇
這篇文章主要介紹了Android?Jetpack架構組件?ViewModel詳解,ViewModel類讓數(shù)據(jù)可在發(fā)生屏幕旋轉等配置更改后繼續(xù)存在,ViewModel類旨在以注重生命周期的方式存儲和管理界面相關的數(shù)據(jù)。感興趣可以來學習一下2022-07-07利用Jetpack?Compose復刻游戲Flappy?Bird
Flappy?Bird是13年紅極一時的小游戲,其簡單有趣的玩法和變態(tài)的難度形成了強烈反差,引發(fā)全球玩家競相把玩!本文將通過Jetpack?Compose復刻這一游戲,感興趣的小伙伴可以了解一下2022-02-02Android手機開發(fā) 使用線性布局和相對布局實現(xiàn)Button垂直水平居中
本文主要結合自己的理解分別對使用LinearLayout和RelativeLayout兩種方式實現(xiàn)居中做了總結,希望對大家有所幫助。2016-05-05Android基于AccessibilityService制作的釘釘自動簽到程序代碼
這篇文章主要介紹了Android基于AccessibilityService制作的釘釘自動簽到程序代碼,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-05-05