国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android TextWatcher監控EditText中的輸入內容并限制其個數

2019-10-23 18:31:48
字體:
來源:轉載
供稿:網友

布局中EditText在android布局中經常用到,對EditText中輸入的內容也經常需要進行限制,我們可以通過TextWatcher去觀察輸入框中輸入的內容,作個筆記。

主布局:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical"  android:layout_width="fill_parent"  android:layout_height="fill_parent"  ><TextView android:id="@+id/tv"  android:layout_width="fill_parent"   android:layout_height="wrap_content"   android:textColor="@android:color/white"   android:ellipsize="marquee"   android:focusable="true"   android:marqueeRepeatLimit="marquee_forever"   android:focusableInTouchMode="true"   android:scrollHorizontally="true"    android:text="Please input the text:"  /><EditText android:id="@+id/ET"   android:layout_width="match_parent"   android:layout_height="wrap_content"  android:inputType="number"/></LinearLayout>

java代碼:

package com.android.text;import android.app.Activity;import android.os.Bundle;import android.text.Editable;import android.text.TextWatcher;import android.util.Log;import android.widget.EditText;import android.widget.TextView;import android.widget.Toast;public class TextWatcherDemo extends Activity {  private TextView mTextView;  private EditText mEditText;  /** Called when the activity is first created. */  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    mTextView = (TextView)findViewById(R.id.tv);    mEditText = (EditText)findViewById(R.id.ET);    mEditText.addTextChangedListener(mTextWatcher);  }  TextWatcher mTextWatcher = new TextWatcher() {    private CharSequence temp;    private int editStart ;    private int editEnd ;    @Override    public void beforeTextChanged(CharSequence s, int arg1, int arg2,        int arg3) {      temp = s;    }    @Override    public void onTextChanged(CharSequence s, int arg1, int arg2,        int arg3) {      mTextView.setText(s);    }    @Override    public void afterTextChanged(Editable s) {      editStart = mEditText.getSelectionStart();      editEnd = mEditText.getSelectionEnd();      if (temp.length() > 10) {        Toast.makeText(TextWatcherDemo.this,            "你輸入的字數已經超過了限制!", Toast.LENGTH_SHORT)            .show();        s.delete(editStart-1, editEnd);        int tempSelection = editStart;        mEditText.setText(s);        mEditText.setSelection(tempSelection);      }    }  };}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 上林县| 铅山县| 高陵县| 荔波县| 石泉县| 白水县| 皋兰县| 龙山县| 通州市| 双牌县| 肇源县| 耿马| 汶上县| 章丘市| 方正县| 龙州县| 康乐县| 田阳县| 石楼县| 收藏| 铅山县| 金塔县| 额济纳旗| 温州市| 鄂伦春自治旗| 富阳市| 绩溪县| 大化| 金阳县| 夹江县| 通榆县| 齐齐哈尔市| 油尖旺区| 德兴市| 青铜峡市| 定南县| 娱乐| 江源县| 南皮县| 临夏县| 老河口市|