首页 > 其他 > 详细

EditText控件的使用

时间:2014-04-25 21:10:22      阅读:510      评论:0      收藏:0      [点我收藏+]

1.监听点击EditText,弹出软键盘中的Enter键:

edittext.setOnEditorActionListener(new OnEditorActionListener() {
	@Override
	public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
	//when Enter Key is press,do business
					
	return true;
	}
});

2.监听EditText焦点的改变:

ecode.setOnFocusChangeListener(new OnFocusChangeListener() {
	@Override
	public void onFocusChange(View v, boolean hasFocus) {
		if (!hasFocus) {
			//do something
		}else if(hasFocus){
			//do something
		}
	}
});

3.为EditText的上下左右添加图片,调用其父类TextView的方法即可:
void android.widget.TextView.setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom);

EditText控件的使用,布布扣,bubuko.com

EditText控件的使用

原文:http://blog.csdn.net/zi413293813/article/details/24473903

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!