最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

android studio EditText的多種需求處理

2023-06-14 13:26 作者:翼618  | 我要投稿

EditText 用到的地方也很多,也經(jīng)常會有一些細節(jié)要求,這里把一些我遇到過的問題記錄一下


只能輸入 數(shù)字和英文 限制? 直接在xml里面寫就好了

android:digits是可輸入文字內(nèi)容??inputType是類型 兩者可以拆開用

android:inputType="number"

android:digits="1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"


EditText? 輸入類型

android:inputType="numberDecimal" 輸入金額


android:singleLine="true" //禁止輸入回車


自動換行?

android:inputType="textMultiLine"??



EditText? 無法編輯

android:focusable="false"


縮回輸入法

InputMethodManager m = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);

m.hideSoftInputFromWindow(Et_search.getWindowToken(), 0);//比如EditView

--------------------------------------------------我是分割線-----------------


editText是控件,這里是java代碼 對應(yīng)的xml應(yīng)該也有

editText.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下劃線

editText.getPaint().setAntiAlias(true);//抗鋸齒

editText.getPaint().setFlags(Paint. STRIKE_THRU_TEXT_FLAG); //中劃線

editText.setFlags(Paint. STRIKE_THRU_TEXT_FLAG|Paint.ANTI_ALIAS_FLAG);? // 設(shè)置中劃線并加清晰?

editText.getPaint().setFlags(0);? // 取消設(shè)置的的劃線


--------------------------------------------------我是分割線-----------------


? ? /**

? ? ?* 排除特殊字符 和空格之類的東西 只能輸入 英文和 中文? EditText?

? ? ?*/

? ? public void setIfSpecialCharacters(final EditText ed) {

? ? ? ? //ed.setOnClickListener(this);? // 有些要用的

? ? ? ? ed.addTextChangedListener(new TextWatcher() {

? ? ? ? ? ? @Override

? ? ? ? ? ? public void onTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {

? ? ? ? ? ? ? ? // TODO Auto-generated method stub

? ? ? ? ? ? ? ? String va = ed.getText().toString();

? ? ? ? ? ? ? ? if (va.length() > 0) {

? ? ? ? ? ? ? ? ? ? String reg = "[^a-zA-Z\u4E00-\u9FA5]";

? ? ? ? ? ? ? ? ? ? if (va.replaceAll(reg, "").length() < va.length()) {

? ? ? ? ? ? ? ? ? ? ? ? ed.setText(Util.ReString(va));

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? System.out.println(Util.ReString(va));

? ? ? ? ? ? ? ? ed.setSelection(ed.getText().length());

? ? ? ? ? ? }


? ? ? ? ? ? @Override

? ? ? ? ? ? public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int arg3) {

? ? ? ? ? ? ? ? // TODO Auto-generated method stub

? ? ? ? ? ? }


? ? ? ? ? ? @Override

? ? ? ? ? ? public void afterTextChanged(Editable arg0) {

? ? ? ? ? ? ? ? // TODO Auto-generated method stub

? ? ? ? ? ? }

? ? ? ? });

? ? }


--------------------------------------------------我是分割線-----------------

? /**

? ? ?* 驗證中文

? ? ?*

? ? ?* @param chinese 中文字符

? ? ?* @return 驗證成功返回true,驗證失敗返回false

? ? ?*/

? ? public static boolean checkChinese(String chinese) {

? ? ? ? String regex = "^[\u4E00-\u9FA5]+$";

? ? ? ? return Pattern.matches(regex, chinese);

? ? }

--------------------------------------------------我是分割線-----------------

EditText? 在addTextChangedListener 里面操作的時候出現(xiàn)異常

的處理方法? ?

通過移除焦點和 添加焦點 解決遞歸操作問題? 打比方說要清空掉用戶輸入的東西 就會有遞歸的問題了


/**設(shè)置空數(shù)據(jù)? 去除焦點?。。。?!*/

et_content.removeTextChangedListener(this);??


/**收起鍵盤*/

InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);

imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);

holder.et_content.setText("");


/**設(shè)置空數(shù)據(jù)后 把焦點加回來 核心代碼 */

holder.et_content.addTextChangedListener(this);

--------------------------------------------------我是分割線-----------------

Editview重寫

et_searchData.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) {


? ? }

? ? @Override

? ? public void afterTextChanged(Editable s) {

? ? }

});

--------------------------------------------------我是分割線-----------------


/**

?* 禁止EditText輸入特殊字符

?* @param editText

?*/

public static void setEditTextInhibitInputSpeChat(EditText editText){


? ? InputFilter filter=new InputFilter() {

? ? ? ? @Override

? ? ? ? public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {

? ? ? ? ? ? String speChat="[`~!@#$%^&*()+=|{}':;',\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:”“’。,、?]";

? ? ? ? ? ? Pattern pattern = Pattern.compile(speChat);

? ? ? ? ? ? Matcher matcher = pattern.matcher(source.toString());

? ? ? ? ? ? if(matcher.find())return "";

? ? ? ? ? ? else return null;

? ? ? ? }

? ? };

? ? editText.setFilters(new InputFilter[]{filter});

}


--------------------------------------------------我是分割線-----------------

//監(jiān)聽輸入框禁止輸入空格

Et_search.addTextChangedListener(new TextWatcher() {

? ? @Override

? ? public void onTextChanged(CharSequence s, int start, int before,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int count) {


? ? ? ? if (s.toString().contains(" ")) {

? ? ? ? ? ? String[] str = s.toString().split(" ");

? ? ? ? ? ? String str1 = "";

? ? ? ? ? ? for (int i = 0; i < str.length; i++) {

? ? ? ? ? ? ? ? str1 += str[i];

? ? ? ? ? ? }

? ? ? ? ? ? Et_search.setText(str1);

? ? ? ? ? ? Et_search.setSelection(start);

? ? ? ? }

? ? }


? ? @Override

? ? public void beforeTextChanged(CharSequence s, int start, int count,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int after) {

? ? }

? ? @Override

? ? public void afterTextChanged(Editable s) {

? ? }

});

------------------------------------------------我是分割線-------------------

只能輸入中文 的EditText?

? ? public void setEd(EditText et_chinese){

? ? ? ? //輸入過濾器可以實現(xiàn)很多效果

? ? ? ? InputFilter filter = new InputFilter() {public CharSequence filter(CharSequence source, int start, int end,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Spanned dest, int dstart, int dend) {

? ? ? ? ? ? ? ? for (int i = start; i < end; i++) {

? ? ? ? ? ? ? ? ? ? if (!isChinese(source.charAt(i))) {

? ? ? ? ? ? ? ? ? ? ? ? return "";

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? return null;

? ? ? ? ? ? }

? ? ? ? };

? ? ? ? et_chinese.setFilters(new InputFilter[]{filter});

? ? ? ? //如果想要再實現(xiàn)輸入字符數(shù)量的限制,可以這么寫,如果限制字符數(shù)為6,就在LengthFilter中傳入?yún)?shù)6

? ? ? ? //et_chinese.setFilters(new InputFilter[]{filter, new InputFilter.LengthFilter(6)});


? ? }


? ? /**

? ? ?* 判定輸入漢字,通過Unicode表

? ? ?*

? ? ?* @param c

? ? ?* @return

? ? ?*/

? ? public boolean isChinese(char c) {

? ? ? ? Character.UnicodeBlock ub = Character.UnicodeBlock.of(c);

? ? ? ? if (ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS

? ? ? ? ? ? ? ? || ub == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS

? ? ? ? ? ? ? ? || ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A

? ? ? ? ? ? ? ? || ub == Character.UnicodeBlock.GENERAL_PUNCTUATION

? ? ? ? ? ? ? ? || ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION

? ? ? ? ? ? ? ? || ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS) {

? ? ? ? ? ? return true;

? ? ? ? }

? ? ? ? return false;

? ? }

------------------------------------------------我是分割線-------------------

2018 年的手機號碼正則 ,這里只是舉個粒子,你可以去搜今年的最新正則來用,匹對手機號碼還是狠常用的

^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|198|199|(147))\\d{8}$

------------------------------------------------我是分割線-------------------

?默認不打開輸入法

?在清單文件設(shè)置,這個還是狠常用的

?android:windowSoftInputMode="adjustUnspecified|stateAlwaysHidden"

------------------------------------------------我是分割線-------------------

//? ? ? ? 彈出輸入框? 也有要彈出的,比較少 不過姑且也放出來把?直接調(diào)用無效,估計是異步的問題

? ? ? ? new Handler().postDelayed(new Runnable(){

? ? ? ? ? ? public void run() {

? ? ? ? ? ? ? ? InputMethodManager inputManager = (InputMethodManager) getApplication().getSystemService(Context.INPUT_METHOD_SERVICE);

? ? ? ? ? ? ? ? inputManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);

? ? ? ? ? ? }

? ? ? ? }, 300);

------------------------------------------------我是分割線-------------------

// 鍵盤狀態(tài)判斷

?InputMethodManager imm = (InputMethodManager) PieChartDetailActivity.this.getSystemService(PieChartDetailActivity.this.INPUT_METHOD_SERVICE);

? ? ? ? if (imm.hideSoftInputFromWindow(v.getWindowToken(), 0)) {

? ? ? ? ? ? imm.showSoftInput(v, 0);

? ? ? ? ? ? Log.d("PieChartDetailActivity", "軟鍵盤已彈出");

? ? ? ? ? ? //軟鍵盤已彈出

? ? ? ? } else {

? ? ? ? ? ? Log.d("PieChartDetailActivity", "軟鍵盤未彈出");

? ? ? ? ? ? //軟鍵盤未彈出

? ? ? ? }

------------------------------------------------我是分割線-------------------

密碼框設(shè)置

顯示內(nèi)容

editText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());

加密內(nèi)容

editText.setInputType(0x00000080);

------------------------------------------------我是分割線-------------------


光標位置移動 需要在子線程中運行?

//? ? 子線程調(diào)用

? ? ?Timer timer = new Timer();

? ? ?timer.schedule(new MyTask(), 1);


? ? //? ? 調(diào)用運行更新 方法

? ? private class MyTask extends TimerTask {

? ? ? ? @Override

? ? ? ? public void run() {

? ? ? ? ? ? Message message = new Message();

? ? ? ? ? ? message.what = 1;

? ? ? ? ? ? mHandler.sendMessage(message);

? ? ? ? }

? ? }


? ? //? ? 子線程

? ? private Handler mHandler = new Handler() {

? ? ? ? public void handleMessage(Message msg) {

? ? ? ? ? ? //? ? 更新UI操作

//? ? ? ? ? ? 移動光標位置

? ? ? ? ? ? CharSequence text = editTextUserpassword.getText();

? ? ? ? ? ? if (text instanceof Spannable) {

? ? ? ? ? ? ? ? Spannable spanText = (Spannable) text;

? ? ? ? ? ? ? ? Selection.setSelection(spanText, text.length());

? ? ? ? ? ? }

? ? ? ? }

? ? };

------------------------------------------------我是分割線-------------------

這里是處理那些帶個小圖標的editText ,可能看著不直觀,參考一下就好

editText 焦點 兼左邊圖標處理設(shè)置? 就輸入密碼 左邊的小圖標也要跟著變換


? ? ? ? nav_up = getResources().getDrawable(R.drawable.password1_green);

? ? ? ? nav_up1 = getResources().getDrawable(R.drawable.password1);

? ? ? ? nav_up.setBounds(0, 0, nav_up.getMinimumWidth(), nav_up.getMinimumHeight());

? ? ? ? nav_up1.setBounds(0, 0, nav_up1.getMinimumWidth(), nav_up1.getMinimumHeight());

? ? ? ??

? ? ? ? editText1.setOnFocusChangeListener(new android.view.View.OnFocusChangeListener() {

? ? ? ? ? ? @TargetApi(Build.VERSION_CODES.JELLY_BEAN)

? ? ? ? ? ? @Override

? ? ? ? ? ? public void onFocusChange(View v, boolean hasFocus) {

? ? ? ? ? ? ? ? if (hasFocus) {

// 此處為得到焦點時的處理內(nèi)容

? ? ? ? ? ? ? ? ? ? editText1.setBackground(getResources().getDrawable(R.drawable.border_bootm));

? ? ? ? ? ? ? ? ? ? editText1.setCompoundDrawables(nav_up, null,null , null);

? ? ? ? ? ? ? ? } else {

// 此處為失去焦點時的處理內(nèi)容

? ? ? ? ? ? ? ? ? ? editText1.setBackground(getResources().getDrawable(R.drawable.border_bootm_gray));

? ? ? ? ? ? ? ? ? ? editText1.setCompoundDrawables(nav_up1, null,null , null);

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? });

------------------------------------------------我是分割線-------------------

? ? /**

? ? ?* 顯示鍵盤

? ? ?*

? ? ?* @param et 輸入焦點

? ? ?*/

? ? public void showInput(final EditText et) {

? ? ? ? et.requestFocus();

? ? ? ? InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);

? ? ? ? imm.showSoftInput(et, InputMethodManager.SHOW_IMPLICIT);

? ? }

?

? ? /**

? ? ?* 隱藏鍵盤

? ? ?*/

? ? protected void hideInput() {

? ? ? ? InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);

? ? ? ? View v = getWindow().peekDecorView();

? ? ? ? if (null != v) {

? ? ? ? ? ? imm.hideSoftInputFromWindow(v.getWindowToken(), 0);

? ? ? ? }

? ? }


android studio EditText的多種需求處理的評論 (共 條)

分享到微博請遵守國家法律
周宁县| 镇巴县| 周至县| 同心县| 赤壁市| 蓬溪县| 赫章县| 莲花县| 曲靖市| 尚志市| 吉木乃县| 林芝县| 沙坪坝区| 河间市| 临泽县| 廉江市| 林口县| 施秉县| 彰化市| 信阳市| 宜阳县| 库尔勒市| 安阳县| 杭锦后旗| 电白县| 淮滨县| 浦北县| 阿克苏市| 鲜城| 平罗县| 团风县| 天门市| 龙泉市| 绥德县| 黄龙县| 兴安县| 同江市| 北海市| 南川市| 阜新市| 阳东县|