布局中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 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); } } };}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android TextWatcher监控EditText中的输入内容并限制其个数全部内容,希望文章能够帮你解决Android TextWatcher监控EditText中的输入内容并限制其个数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)