XEditText
介绍:
带删除功能的EditText;显示或者隐藏密码;可设置自动添加分隔符分割电话号码、银行卡号等;支持禁止Emoji表情符号输入。
运行效果:
使用说明:
Gradle
dependencies{
//e.g. 'com.xw.repo:xedittext:2.0.2@aar'
compile 'com.xw.repo:xedittext:${LATEST_VERSION}@aar'
}
用法:
<com.xw.repo.XEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="default, just likes EditText"
app:x_disableClear="true"/>
<com.xw.repo.XEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="clear drawable"/>
<com.xw.repo.XEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="default password input"
android:inputType="textPassword"/>
<com.xw.repo.XEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="pwd input, custom drawables"
android:inputType="textPassword"
app:x_clearDrawable="@mipmap/ic_clear" <!--support svg-->
app:x_hidePwdDrawable="@mipmap/ic_hide" <!--support svg-->
app:x_showPwdDrawable="@mipmap/ic_show"/> <!--support svg-->
已下载
0