zoukankan      html  css  js  c++  java
  • Edittext 的变化监听、图片设置

    edittext的变化监听有addTextChangedListener,code:

            editText.addTextChangedListener(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) {
                }
    
                @Override
                public void afterTextChanged(Editable s) {
                    if (s.length() > 5)
                        textView1.setText("大于 5");
                    else
                        textView1.setText("小于 5");
                }
            });
    

    也可以以接口的形式写入

    TextWatcher textWatcher;//定义一个watcher
    
    
     textWatcher = 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) {
    
                }
    
                @Override
                public void afterTextChanged(Editable s) {
                    if (s.length() > 5)
                        textView1.setText("大于 5");
                    else
                        textView1.setText("小于 5");
                }
            };
    
    
    
            editText.addTextChangedListener(textWatcher);
    

    动态对edittext的图片进行改变

            Drawable drawable = getResources().getDrawable(R.mipmap.ic_launcher);
            drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
            editText.setCompoundDrawables(drawable, drawable, null, null); //四个参数代表四个位置,左上右下
    
  • 相关阅读:
    HelloWorld入门程序
    list的几种遍历方式
    遍历map的几种方法
    Java动态代理
    七月七日学习记录
    七月六日学习报告
    钢镚儿使用体验
    TD tree 使用体验
    学习笔记154—Matlab 如何写入txt?
    学习笔记153—matlab中小数如何取整?
  • 原文地址:https://www.cnblogs.com/lyxin/p/5872263.html
Copyright © 2011-2022 走看看