第三方开源库-->MaterialEditText

Posted Kevin_小飞象

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三方开源库-->MaterialEditText相关的知识,希望对你有一定的参考价值。

MaterialEditText 是 rengwuxian 在 GitHub 推出的控件来实现文本输入框的样式 。

属性

  • 通用颜色
met_baseColor: 底部横线和所有文字在无焦点状态的基础色。默认为黑色。
met_primaryColor: 底部横线和 Floating label 的高亮色(如果 met_floatingLabel 设置为 highlight 的话)。默认使用 baseColor。
met_textColor: 和自带的 android:textColor 作用相同。换用这个就好。
met_textColorHint: 和自带的 android:textColorHint 作用相同。换用这个就好。
met_underlineColor: 自定义底部横线的颜色。
  • Floating label
met_floatingLabel: Floating label 应该怎样被展示。选项有:none, normal,
highlight。 默认是 none.
met_floatingLabelText: 自定义 floating label 的文字。
met_floatingLabelTextSize: Floating label 的字体大小。默认为 12sp。
met_floatingLabelTextColor: Floating label 的字体颜色。默认为半透明的 baseColor.
met_floatingLabelPadding: Floating label 和主文字区域的间隔。
met_floatingLabelAnimating: 是否使用动画来显示和消失 floating label 。默认为 true 。
met_floatingLabelAlwaysShown: 是否总是显示 Floating label 。默认为 false 。
  • 字数限制
met_minCharacters: 限制的最少字数。默认为0。
met_maxCharacters: 限制的最大字数。0为无限制。默认为0.
-Helper/Error text
met_helperText: 底部的 helper text。
met_helperTextAlwaysShown: 是否总是显示 helper text, 而不仅仅是在获得焦点状态时。默认为 false。
met_helperTextColor: Helper text 的字体颜色。
met_errorColor: Error text 的字体颜色。
met_bottomTextSize: 底部文字(Helper/Error text)的字体大小。默认为12sp。
met_minBottomTextLines :底部为文字预留的行数,不管是否有 Helper/Error text 正在显示。
  • 字体(Typeface)
met_typeface: 主文字的字体.
met_accentTypeface: 辅助文字的字体.
Material Design 风格的左右图标
met_iconLeft: 左边的图标.
met_iconRight: 右边的图标.
met_iconPadding: 图标和主区域之间的padding。默认为16dp, 遵守 Google’s Material Design Spec 中的建议
  • 其它
met_hideUnderline: 是否隐藏底部横线。默认为 false。
met_autoValidate: 是否自动检查字符串。默认为 false。
met_singleLineEllipsis: 是否在文字超长时显示底部的省略号。默认为 false。
met_clearButton: 是否显示用来清空文字的 Clear button 。默认为 false。

使用

1. 添加依赖
implementation 'com.rengwuxian.materialedittext:library:2.1.4'

基本使用

<com.rengwuxian.materialedittext.MaterialEditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Basic"/>

修改输入的字体颜色

app:met_baseColor="#0056d3"

修改输入框的颜色

app:met_primaryColor="#982360"

Material Design 新特新

在 EditText 输入时, hint 内容将缩小位移到输入框上方,而在 MaterialEditText 中同样实现了该功能 Floating Label

<com.rengwuxian.materialedittext.MaterialEditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:met_baseColor="#0056d3"
        app:met_primaryColor="#982360"
        app:met_floatingLabelText="用户名"
        app:met_floatingLabel="normal"
        android:hint="请输入用户名"/>

当设置底部省略号后,控件会在文字向左滚动时,在底部显示一个三个点,这个方法会自动将 android:singleLine 设置为 true
app:met_singleLineEllipsis="true"

字符数限制

设置字符数限制后,控件右下角会显示已输入字符数和最大字符数的角标,并在超过限制后显示警告色(默认为红色).

//设置警告色:
 app:met_errorColor="#FF0000"

//设置最多字数和最小字数
 app:met_minCharacters="5"
 app:met_maxCharacters="10"

// helper Text 
app:met_helperText="Integer"

// 自定义accent typeface 字体
app:met_accentTypeface="fonts/Roboto-LightItalic.ttf"

// Hide UnderLine 删除默认的下划线
app:met_hideUnderline="true"

// 显示清空输入框按钮
app:met_clearButton= “true”

以上是关于第三方开源库-->MaterialEditText的主要内容,如果未能解决你的问题,请参考以下文章

第三方开源库-->EditText & ImageView

MaterialDesign 的三方控件

MaterialDesign 的三方控件

第三方开源库-->开源库推荐

第三方开源库-->那些酷炫的 自定义View 开源库整理

第三方开源库-->那些酷炫的 RecyclerView 开源库整理