textwatcherEditText怎么实现字母过滤功能?
textwatcher 时间:2021-07-20 阅读:(
)
EditText监听方法,实时的判断输入多少字符
最近在写一个小项目,其中有一点用到了显示EditText中输入了多少个字符,像微博中显示剩余多少字符的功能。
在EditText提供了一个方法addTextChangedListener实现对输入文本的监控。
下边是我自己写的一个Demo。
代码实现:
布局文件main.xml
[html] view plaincopy
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:id="@+"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:text="Please input the text:"
/>
<EditText android:id="@+id/ET"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
Activity
[java] view plaincopy
.damai.test;
import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class TestActivity extends Activity {
private TextView mTextView;
private EditText mEditText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mTextView = (TextView)findViewById();
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 onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
temp = s;
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
// mTextView.setText(s);//将输入的内容实时显示
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
editStart = mEditText.getSelectionStart();
editEnd = mEditText.getSelectionEnd();
mTextView.setText("您输入了" + temp.length() + "个字符");
if (temp.length() > 10) {
Toast.makeText(TestActivity.this,
"你输入的字数已经超过了限制!", Toast.LENGTH_SHORT)
.show();
s.delete(editStart-1, editEnd);
int tempSelection = editStart;
mEditText.setText(s);
mEditText.setSelection(tempSelection);
}
}
};
}安卓开发 如何为edittext做一个固定的输入格式
TextWatcher tw = 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) {
在这里面做字符串s的正则表达式处理
}
@Override
public void afterTextChanged(Editable s) {
}
};
.addTextChangedListener(tw);android编成:TextChangedListener用法?
TextChangedListener是android文本框改变的一个监听器,一般用于统计文本输入、监测输入是否符合规范等。
要想监听文本框的文本改变情况需要实现:beforeTextChanged、onTextChanged、 afterTextChanged三个方法。
EditText editText = new EditText(this);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
如果要实现监听输入是否符合规范,或统计输入的字数,可以在afterTextChanged方法中书写相应的业务逻辑代码text与ntext的区别
text和ntext的区别?- -
今天在asp中执行sql语句是发生了一点问题,就是text编码问题,大概text类型对编码的支持有点问题,改成ntext就可以了............
也就是说,我们不是要注意在数据库表中"Text" 或"ntext" 类型的字段排在最后,而是要注意"SELECT" 子句中"Text" 或"ntext" 类型的字段排在最后。
如果有一列以上的"Text" 或"ntext" 类型的字段,要注意它们在数据库表中的顺序。
ntext
可变长度 Unicode 数据的最大长度为 230 - 1 (1,073,741,823) 个字符。
存储大小是所输入字符个数的两倍(以字节为单位)。
ntext 在 SQL-92 中的同义词是 national text。
text
服务器代码页中的可变长度非 Unicode 数据的最大长度为 231-1 (2,147,483,647) 个字符。
当服务器代码页使用双字节字符时,存储量仍是 2,147,483,647 字节。
存储大小可能小于 2,147,483,647 字节(取决于字符串)。
text indent是什么意思
text-indent 属性规定文本块中首行文本的缩进。
注释:允许使用负值。
如果使用负值,那么首行会被缩进到左边。
例如: p {text-indent: 1cm}EditText怎么实现字母过滤功能?
EditText is derived from TextView which has avoid addTextChangedListener(TextWatcher watcher)method. TextWatcher has callbacks, likeabstract void afterTextChanged(Editable s)
rfchost怎么样?rfchost是一家开办了近六年的国人主机商,一般能挺过三年的国人商家,还是值得入手的,商家主要销售VPS,机房有美国洛杉矶/堪萨斯、中国香港,三年前本站分享过他家堪萨斯机房的套餐。目前rfchost商家的洛杉矶机房还是非常不错的,采用CN2优化线路,电信双程CN2 GIA,联通去程CN2 GIA,回程AS4837,移动走自己的直连线路,目前季付套餐还是比较划算的,有需要的可...
搬瓦工在国内非常流行的主机商,以提供低价的vps著称.不过近几年价格逐渐攀升.不过稳定性和速度一向不错.依然深受国内vps爱好者喜爱.新上线的套餐经常卖到断货.支持支付宝,paypal很方便购买和使用.官网网站:https://www.bandwagonhost.com[不能直接访问,已墙]https://www.bwh88.net[有些地区不能直接访问]https://www.bwh81.net...
欧路云怎么样?欧路云主要运行弹性云服务器,可自由定制配置,可选加拿大的480G超高防系列,也可以选择美国(200G高防)系列,也有速度直逼内地的香港CN2系列。所有配置都可以在下单的时候自行根据项目 需求来定制自由升级降级 (降级按天数配置费用 退款回预存款)。2021年7月14日美国 CERA 弹性云服务器 上新 联通CUVIP 线路!8折特惠中!点击进入:欧路云官方网站地址付款方式:PayPa...
textwatcher为你推荐
发送垃圾短信发垃圾短信违法吗 法律怎么规定的软件开发的周期软件项目周期是什么免流量是什么意思腾讯大王卡免费流量是什么意思?bt4破解教程怎么破解无线网络密码:WPA/WPA2 PSK,最好有软件,教程,破了加分!!百度创业史百度的创始人是谁电梯物联网平台国内物联网公司排名,知道的帅哥美女快来回答哦!谢谢了!催收软件哪个好欠钱不还的,怎么利用催收平台帮助催收?智能公共广播系统公共广播系统的品牌都有哪些??金山铁路最新时刻表上海南叶线的时刻表nero教程NERO怎么使用?
长沙虚拟主机 diahosting 100x100头像 美国网站服务器 电信主机 免费网页空间 服务器硬件防火墙 电信网络测速器 独立主机 广州虚拟主机 谷歌台湾 深圳域名 免费个人网页 中国联通宽带测试 云服务是什么意思 服务器硬件配置 电信主机托管 标准机柜 asp简介 阿里云宕机故障 更多