Android自定义view——PasswordInputEdt密码输入框

效果图

ScreenGif.gif

使用

在根目录的build.gradle中添加

allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

在项目的build.gradle中添加

 compile 'com.github.superSp:PasswordInputEdt:v1.0'

在布局中添加

 

在Activity中使用

edt = (PasswordInputEdt) findViewById(R.id.edt);
edt.setOnInputOverListener(new PasswordInputEdt.onInputOverListener() {
      @Override
      public void onInputOver(String text) {
          Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();
      }
});

可以自定义的属性(xml和代码都可以设置)

                  
                      
          
                   
               
              
               
                  
             
                     
                    
              
              
                        
        
        
    

clearLastOne() 删除最后一个字符方法
clearAll() 清空内容方法
getText() 获取输入内容

查看源码github地址

你可能感兴趣的:(Android自定义view——PasswordInputEdt密码输入框)