您的位置:首页 > 移动开发 > Android开发

[Android实例] 带clean按钮的输入框

2016-01-04 16:05 323 查看
该篇文章从eoeAndroid搬迁过来的,原文地址:[Android实例] 带clean按钮的输入框

该控件是默认高度,不能修改,高度为48dp,其中清除按钮的大小为32*32,该控件默认是单行输入,不能修改

主要属性:

<declare-styleable name="EditDeleteText">
<attr name="text" format="string" />
<attr name="textColor" format="color" />
<attr name="textSize" format="float" />
<attr name="hint" format="string" />
<attr name="enabled" format="boolean" />
</declare-styleable>


用法:

<com.example.editdeletetext.EditDeleteText
android:layout_width="match_parent"
android:layout_height="wrap_content"
custom:enabled="true"
custom:hint="oooooo"
custom:text="aaaaa"
custom:textSize="20" />




下载地址:项目地址
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android