Android仿支付寶淘寶
1.概述
最近有人在問我要所有專案的程式碼,我在這裡宣告一下我不是這幾個專案公司內部人員,之所以錄視訊和寫部落格也是喜歡與人分享和學習而已,最終所有的程式碼肯定會上傳的,只不過會要等全部的效果以及設計模式搞完。在這裡感謝內涵段子這個專案,感謝那些提供幫助的部落格牛人,希望有一天也能和你們一樣。
部分人看了視訊的反饋某些地方沒講的很細,首先這肯定是我的問題,但是有很多東西其實是基礎,比如我們用到了屬性動畫很多地方用到了canvas畫圖如果沒怎麼接觸過可能會有點難度,我到後期也會去錄製一些基礎的視訊,不過要等部落格的訪問量到達一定的數量,自己也需要去沉澱。
今天我們就來寫一個相對簡單的效果,就是仿淘寶確定收貨和支付寶轉賬的自定義密碼輸入框和鍵盤。視訊地址:
2.效果實現
2.1 實現思路:
這個效果主要的實現就是Canvas畫圖,我們可以去搜搜看看別人怎麼實現的,大部分都是自定義控制元件去繪製,還有一小部分是直接用LinearLayout寫死了,直接就是用的程式碼去控制佈局。我們這裡使用自定義控制元件去實現
2.1.1 主要涉及到三個部分需要去繪製:背景、分割線、密碼圓點
2.1.2 繼承自誰都可以,最好還是不要繼承自View,這樣就需要多實現一個onMeasure()方法,這裡考慮到可能有些地方不會使用自定義的鍵盤,所以決定繼承EditText。
2.2 繪製:背景、分割線、密碼圓點:
這裡需要使用自定義屬性,這個相信大家都比較瞭解就不做過多的講解,大概涉及的屬性有:背景圓角、背景邊框大小、背景邊框顏色、分割線大小、分割線顏色、密碼圓點的顏色、密碼圓點的半徑大小。具體的attrs.xml就是:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="PasswordEditText">
<!-- 密碼的個數 -->
<attr name="passwordNumber" format="integer"/>
<!-- 密碼圓點的半徑 -->
<attr name="passwordRadius" format="dimension" />
<!-- 密碼圓點的顏色 -->
<attr name="passwordColor" format="color" />
<!-- 分割線的顏色 -->
<attr name="divisionLineColor" format="color" />
<!-- 分割線的大小 -->
<attr name="divisionLineSize" format="color" />
<!-- 背景邊框的顏色 -->
<attr name="bgColor" format="color" />
<!-- 背景邊框的大小 -->
<attr name="bgSize" format="dimension" />
<!-- 背景邊框的圓角大小 -->
<attr name="bgCorner" format="dimension"/>
</declare-styleable>
</resources>
接下來我們就需要去繪製了,首先獲取自定義屬性,然後在onDraw()中去繪製
/**
* Created by Darren on 2016/12/14.
* Email: [email protected]
* Description: 密碼輸入框
*/
public class PasswordEditText extends EditText {
// 畫筆
private Paint mPaint;
// 一個密碼所佔的寬度
private int mPasswordItemWidth;
// 密碼的個數預設為6位數
private int mPasswordNumber = 6;
// 背景邊框顏色
private int mBgColor = Color.parseColor("#d1d2d6");
// 背景邊框大小
private int mBgSize = 1;
// 背景邊框圓角大小
private int mBgCorner = 0;
// 分割線的顏色
private int mDivisionLineColor = mBgColor;
// 分割線的大小
private int mDivisionLineSize = 1;
// 密碼圓點的顏色
private int mPasswordColor = mDivisionLineColor;
// 密碼圓點的半徑大小
private int mPasswordRadius = 4;
public PasswordEditText(Context context) {
this(context, null);
}
public PasswordEditText(Context context, AttributeSet attrs) {
super(context, attrs);
initPaint();
initAttributeSet(context, attrs);
// 設定輸入模式是密碼
setInputType(EditorInfo.TYPE_TEXT_VARIATION_PASSWORD);
// 不顯示游標
setCursorVisible(false);
}
/**
* 初始化屬性
*/
private void initAttributeSet(Context context, AttributeSet attrs) {
TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.PasswordEditText);
// 獲取大小
mDivisionLineSize = (int) array.getDimension(R.styleable.PasswordEditText_divisionLineSize, dip2px(mDivisionLineSize));
mPasswordRadius = (int) array.getDimension(R.styleable.PasswordEditText_passwordRadius, dip2px(mPasswordRadius));
mBgSize = (int) array.getDimension(R.styleable.PasswordEditText_bgSize, dip2px(mBgSize));
mBgCorner = (int) array.getDimension(R.styleable.PasswordEditText_bgCorner, 0);
// 獲取顏色
mBgColor = array.getColor(R.styleable.PasswordEditText_bgColor, mBgColor);
mDivisionLineColor = array.getColor(R.styleable.PasswordEditText_divisionLineColor, mDivisionLineColor);
mPasswordColor = array.getColor(R.styleable.PasswordEditText_passwordColor, mDivisionLineColor);
array.recycle();
}
/**
* 初始化畫筆
*/
private void initPaint() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setDither(true);
}
/**
* dip 轉 px
*/
private int dip2px(int dip) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
dip, getResources().getDisplayMetrics());
}
@Override
protected void onDraw(Canvas canvas) {
int passwordWidth = getWidth() - (mPasswordNumber - 1) * mDivisionLineSize;
mPasswordItemWidth = passwordWidth / mPasswordNumber;
// 繪製背景
drawBg(canvas);
// 繪製分割線
drawDivisionLine(canvas);
// 繪製密碼
drawHidePassword(canvas);
}
/**
* 繪製背景
*/
private void drawBg(Canvas canvas) {
mPaint.setColor(mBgColor);
// 設定畫筆為空心
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeWidth(mBgSize);
RectF rectF = new RectF(mBgSize, mBgSize, getWidth() - mBgSize, getHeight() - mBgSize);
// 如果沒有設定圓角,就畫矩形
if (mBgCorner == 0) {
canvas.drawRect(rectF, mPaint);
} else {
// 如果有設定圓角就畫圓矩形
canvas.drawRoundRect(rectF, mBgCorner, mBgCorner, mPaint);
}
}
/**
* 繪製隱藏的密碼
*/
private void drawHidePassword(Canvas canvas) {
int passwordLength = getText().length();
mPaint.setColor(mPasswordColor);
// 設定畫筆為實心
mPaint.setStyle(Paint.Style.FILL);
for (int i = 0; i < passwordLength; i++) {
int cx = i * mDivisionLineSize + i * mPasswordItemWidth + mPasswordItemWidth / 2 + mBgSize;
canvas.drawCircle(cx, getHeight() / 2, mPasswordRadius, mPaint);
}
}
/**
* 繪製分割線
*/
private void drawDivisionLine(Canvas canvas) {
mPaint.setStrokeWidth(mDivisionLineSize);
mPaint.setColor(mDivisionLineColor);
for (int i = 0; i < mPasswordNumber - 1; i++) {
int startX = (i + 1) * mDivisionLineSize + (i + 1) * mPasswordItemWidth + mBgSize;
canvas.drawLine(startX, mBgSize, startX, getHeight() - mBgSize, mPaint);
}
}
}
目前的效果就是點選之後會彈出系統的鍵盤,實現了基本的效果,接下來我們再加入監聽也就說當密碼輸入完成我們需要回調監聽。
2.2 自定義鍵盤:
接下來我們看看自定義鍵盤吧,自定義鍵盤我們可以使用GridView或是RecyclerView去顯示,最好還是不要去畫了,採用自定義View載入一個layout佈局,給每個按鈕一個點選事件然後回調出去即可。
/**
* Created by Darren on 2016/12/14.
* Email: [email protected]
* Description: 自定義鍵盤
*/
public class CustomerKeyboard extends LinearLayout implements View.OnClickListener {
private CustomerKeyboardClickListener mListener;
public CustomerKeyboard(Context context) {
this(context, null);
}
public CustomerKeyboard(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public CustomerKeyboard(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
inflate(context, R.layout.ui_customer_keyboard, this);
setChildViewOnclick(this);
}
/**
* 設定鍵盤子View的點選事件
*/
private void setChildViewOnclick(ViewGroup parent) {
int childCount = parent.getChildCount();
for (int i = 0; i < childCount; i++) {
// 不斷的遞迴設定點選事件
View view = parent.getChildAt(i);
if (view instanceof ViewGroup) {
setChildViewOnclick((ViewGroup) view);
continue;
}
view.setOnClickListener(this);
}
}
@Override
public void onClick(View v) {
View clickView = v;
if (clickView instanceof TextView) {
// 如果點選的是TextView
String number = ((TextView) clickView).getText().toString();
if (!TextUtils.isEmpty(number)) {
if (mListener != null) {
// 回撥
mListener.click(number);
}
}
} else if (clickView instanceof ImageView) {
// 如果是圖片那肯定點選的是刪除
if (mListener != null) {
mListener.delete();
}
}
}
/**
* 設定鍵盤的點選回撥監聽
*/
public void setOnCustomerKeyboardClickListener(CustomerKeyboardClickListener listener) {
this.mListener = listener;
}
/**
* 點選鍵盤的回撥監聽
*/
public interface CustomerKeyboardClickListener {
public void click(String number);
public void delete();
}
}
2.3. 自定義密碼輸入框配套自定義鍵盤
自定義密碼輸入框寫好了,自定義鍵盤也完成了,最後就是需要把他們兩個套在一起。首先密碼輸入框點選再也不能彈系統鍵盤,點選鍵盤的時候需要往密碼輸入框裡面塞密碼,還需要刪除,所以密碼輸入框還得提供兩個方法
/**
* Created by Darren on 2016/12/14.
* Email: [email protected]
* Description: 密碼輸入框
*/
public class PasswordEditText extends EditText {
// 省略之前的程式碼...
/**
* 新增密碼
*/
public void addPassword(String number) {
number = getText().toString().trim() + number;
if (number.length() > mPasswordNumber) {
return;
}
setText(number);
}
/**
* 刪除最後一位密碼
*/
public void deleteLastPassword() {
String currentText = getText().toString().trim();
if (TextUtils.isEmpty(currentText)) {
return;
}
currentText = currentText.substring(0, currentText.length() - 1);
setText(currentText);
}
}
2.4. 最後的測試
/**
* Created by Darren on 2016/12/14.
* Email: [email protected]
* Description: 自定義鍵盤和自定義密碼輸入框測試
*/
public class MainActivity extends Activity implements CustomerKeyboard.CustomerKeyboardClickListener,
PasswordEditText.PasswordFullListener{
private CustomerKeyboard mCustomerKeyboard;
private PasswordEditText mPasswordEditText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mPasswordEditText = (PasswordEditText) findViewById(R.id.password_et);
mCustomerKeyboard = (CustomerKeyboard) findViewById(R.id.custom_key_board);
// 設定監聽
mCustomerKeyboard.setOnCustomerKeyboardClickListener(this);
mPasswordEditText.setOnPasswordFullListener(this);
}
/**
* 鍵盤數字點選監聽回撥方法
*/
@Override
public void click(String number) {
mPasswordEditText.addPassword(number);
}
/**
* 鍵盤刪除點選監聽回撥方法
*/
@Override
public void delete() {
mPasswordEditText.deleteLastPassword();
}
/**
* 密碼輸入完畢回撥方法
*/
@Override
public void passwordFull(String password) {
Toast.makeText(this, "密碼填充完畢:" + password, Toast.LENGTH_SHORT).show();
}
}
最後我們整合到Dialog中就好了,Dialog我們也需要利用Builder設計模式自己去封裝通用的效果,因為系統的太過於麻煩,這裡就不做介紹我們後面再說吧,具體請看視訊講解:http://pan.baidu.com/s/1mhOVT3a
相關推薦
Android仿京東、淘寶商品詳情頁上拉檢視更多詳情
老規矩,先上圖,沒圖說個J8 高清原圖GIF圖,請移步:https://github.com/kangkanger/SlideSeeMoreLayout/blob/master/screenshots/2.gif 相信現在只要做電商的APP,95%的UI設計師都會抄這個介面,所以把
Android仿支付寶淘寶
1.概述 最近有人在問我要所有專案的程式碼,我在這裡宣告一下我不是這幾個專案公司內部人員,之所以錄視訊和寫部落格也是喜歡與人分享和學習而已,最終所有的程式碼肯定會上傳的,只不過會要等全部的效果以及設計模式搞完。在這裡感謝內涵段子這個專案,感謝那些提供幫
aNDROID仿支付寶餅圖效果
餅圖 aid hao123 .com andro smart and lis oid sMaRT%E6%BC%82%E4%BA%AE%E6%97%B6%E9%92%9F%E2%80%94%E2%80%94%E6%BA%90%E4%BB%A3%E7%A0%81 http:/
android仿支付寶輸入車牌號
這個是iOS的效果圖,差異不大,樓主主攻OC,見諒 需要用到的xml檔案 需要用到的類 number_or_letters.xml <?xml version="1.0" encoding="UTF-8"?> <Keyboard an
Android仿支付寶密碼輸入框(自定義數字鍵盤)
1.概述 Android自定義密碼輸入框,通過自定義輸入顯示框和自定義輸入鍵盤,實現仿支付寶數字鍵盤等。程式碼已託管到github,有需要的話可以去我的github下載。 可以自定義關閉圖示、文字內容、顏色、大小,彈框樣
android仿支付寶螞蟻森林載入動畫效果
一圖勝千言 偷過別人能量的小夥伴都熟悉這個載入效果,下面就講解一下實現過程。 1,自定義view 2,這裡要用到螞蟻森林的圖示,如圖 通過canvas.drawBitmap()畫出圖片。 3,通過PorterDuff.Mode.SRC_IN,給圖片填充想要的
Android 仿支付寶之前一個什麼效果~思路
1.之前仿皮皮蝦的那種對RecyclerView 沒用,要說為什麼的話,主要有以下幾點 . . . . .
Android 仿支付寶搜尋結果頁,字串部分文字顯示高亮
最近收到一個需求就是,搜尋的關鍵詞,在搜尋結果頁的搜尋條目上高亮顯示。類似於支付寶搜尋結果頁的效果。 先來看一下效果如下圖: 經過一番思慮之後,感覺還是比較簡單的,直接上程式碼 /** * 字串高亮顯示部分文字 * @param textView
Android 仿支付寶城市服務欄目tab選擇滑動子View效果
一.圖示效果 (支付寶)
Android-仿支付寶的日期選擇頁
描述 參考支付寶所製作的日期選擇頁,效果如下: 知識點與難點 1、獲取指定月份有多少天 public static int getDayCountOfMonth(int year, int month) { int[] arr
Android仿支付寶扣款順序,動態改變ListView各Item次序
前言:今天遇到個需求,需要讓使用者動態選擇語音傳輸方式的次序,突然想起支付寶選擇扣款順序的功能,恰好能滿足需要,就花了點時間寫了個demo,在此權當學習記錄 先上效果圖 支付寶的效果 demo的效果 思路: 用ListV
Android (仿支付寶) 收益進度條
一、 看效果 二、上程式碼 package com.framework.widget; import android.app.Activity; import android.content.Context; import android.content.res
android仿支付寶首頁更多、應用編輯介面
[github地址](https://github.com/oldbirdy/recyclerdemo “github地址”) 專案越來越大,模組越來越多,首頁上展示的東西又不能全部都展示出來,只能選擇幾個重要的模組展示出來。但是不同的使用者關注的層面不一樣,只
Android 仿騰訊應用寶 之 Toolbar +Scroolview +tab滑動懸停效果
先說下最近做應用市場,想要的效果如下: 1、上面actionbar使用的toolbar最新的工具條來代替acionbar. 2、toolbar下面有一個 app詳情 3、app詳情下面有一個滑動tab ,tab下是viewpage ,viewpage裡面巢狀的是2個Frag
仿京東或淘寶的訂單中心頁面
因為最近有用到類似京東訂單中心的功能,遂決定寫篇部落格做個Demo,如有問題可留言探討。先上效果圖:評價和刪除訂單功能都做了簡單的實現。開發這個功能主要用到了安卓中的ExpandlistView。ExpandlistView的使用跟ListView的使用類似,如果對Expan
Android 實現類似於淘寶頭條的熱點滾動推薦
其實原理很簡單。使用ViewFlipper,然後把要滾動的控制元件新增進去就可以了,當然首先得感謝各位前輩先寫好底層的東西~~~~ 步驟: 第一現在佈局檔案裡面定義佈局,如下所示,可根據需要自己定義ViewFlipper <ViewFlipper andr
Android 使用 Scheme 啟動淘寶,天貓等其他APP
最近在開發一個購物的APP,在應用內直接跳轉到淘寶,天貓,京東等其它購物APP,一番查詢研究後找到了解決方法。 直接上結論程式碼(這也是很多人喜歡看的): //需要傳入的 scheme 型別的商品地址 String path ="taobao://item.
【Android 進階】淘寶頭條:向上滾動廣告條ViewFlipper
所謂前人栽樹,後人乘涼,在此感謝博主的貢獻。 參考博文: 仿淘寶首頁的淘寶頭條View垂直滾動 歡迎關注我的微信公眾號 不只是原創技術文章,更多的是對生活的思考總結 我在博主的基礎上做了如下工作: 修復了滾動條第二條點選事件無法觸發這個
可自由新增到指定位置的分頁標控制元件(支付寶淘寶效果)
LGFFreePT 可自由新增到指定位置的分頁標控制元件 製作目的 想要把分頁標放在檢視任意位置 把分頁用的子控制器 Page
Android基礎控件——CardView的使用、仿支付寶銀行卡
內容 https prev use 設置 back com 支付 技術 今天有空學習了下CardView的使用,既然是使用,不凡使用一個實例操作一下 CardView是Android5.0的新控件,所以我們需要在dependencies中添加支持: CardVie