1.EdiTtext輸入框控制不能輸入空格,給EditText添加一個(gè)addTextChangedListener監(jiān)聽,如果有空格split截取截取再for循環(huán)將截取后不包含空格的字符串?dāng)?shù)組重新排列這樣這個(gè)字符串就不包含空格了,最后將這個(gè)字符串重新寫入EditText,這時(shí)會(huì)出現(xiàn)一個(gè)問題就是光標(biāo)會(huì)自動(dòng)跳轉(zhuǎn)到第一個(gè)位置,在onTextChanged中會(huì)有一個(gè)叫做start的變量他會(huì)傳入在這個(gè)空格輸入之前的光標(biāo)位置,EditText.setSelection(int)來改變光標(biāo)的位置具體位置。
隨州網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,隨州網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為隨州上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的隨州做網(wǎng)站的公司定做!
具體代碼:
private EditText edittextcll;// 輸入框 edittextcll = (EditText) findViewById(R.id.edittextcll); //監(jiān)聽輸入框禁止輸入空格 edittextcll.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]; } edittextcll.setText(str1); edittextcll.setSelection(start); } } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void afterTextChanged(Editable s) { } });
2.EditText控制不能輸入回車,在xml中添加android:singleLine="true"
以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持創(chuàng)新互聯(lián)!