您好,登錄后才能下訂單哦!
怎么在Android中通過自定義view實現一個輸入控件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
首先是ImageView的子類TextImageView,onDraw的實現也很簡單,就是判斷text是否長度大于0,如果大于0則繪制文字,還有一些細節處理就是設置字體顏色,字體大寫,獲取字體的寬高
@Override protected void onDraw(Canvas canvas) { if (text.length() > 0) { if (isDrawSrc) { super.onDraw(canvas); } canvas.drawText(text, 0, text.length(), (getMeasuredWidth() - textWidth) / 2, (getMeasuredHeight() + dy) / 2, textPaint); } else { super.onDraw(canvas); } }
其次PasswordView是一個自定義ViewGroup,引入了一個布局,布局中就是一個EditText(數據捕捉)和一個Linearlayout(代碼添加TextImageView)。EditText的寬高是1dp和0dp(避免用戶可以操作EditText);給Linearlayout設置divider屬性(兩個TextImageView的間隔)
PasswordView的核心代碼如下:
- 代碼控制EditView獲取輸入
public void requestEtFocus() { catchInput.setFocusable(true); catchInput.setFocusableInTouchMode(true); catchInput.setClickable(true); catchInput.requestFocus(); showSoftKeyboard(catchInput); catchInput.setCursorVisible(false); catchInput.setSelection(catchInput.length()); }
// 動態添加TextImageView for (int i = 0; i < passwordLength; i++) { TextImageView view = new TextImageView(context); view.setTextSize(textSize); view.setTextColor(textColor); content.addView(view); if (unInputBg != 0) { view.setBackgroundResource(unInputBg);// 設置未輸入前的背景 } LinearLayout.LayoutParams params = new LinearLayout.LayoutParams((int) itemWidth, (int) itemHeight); if (i == 0) { params.setMargins((int) dpToPixel(1), 0, 0, 0); } if (i == passwordLength - 1) { params.setMargins(0, 0, (int) dpToPixel(1), 0); } view.setLayoutParams(params); views[i] = view; // 分割字體,給TextIamgeView繪制文字 if (text != null && i < text.length()) { setItemText(text.subSequence(i, i + 1)); } } // 輸入監聽 catchInput.addTextChangedListener(new TextWatcher() { @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 (s.length() > 0) { // index:成員變量;保存當前的輸入了幾個字符 if (index > s.length()) { removeItemText();// 刪除 } else { setText(s); if (s.length() == passwordLength) { if (listener != null) { // 輸入完成回調 listener.onInputCodeEnd(s); } } } } else if (s.length() == 0 && index > 0) { removeItemText(); } } @Override public void afterTextChanged(Editable s) { } });
Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。