Skip to content
rengwuxian edited this page Nov 4, 2014 · 24 revisions

Features and Usage

  1. Basic

Just use com.rengwuxian.materialedittext.MaterialEditText instead of EditText in your layout xml. MaterialEditText has directly inherited EditText, so you don't have to change your java code.

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

Basic

  1. Custom Base Color

Base color will be used as bottom line color, text color (reset alpha to 87%) and hint text color (reset alpha to 26%). You can use app:baseColor in xml or setBaseColor() in java code. If you haven't set a base color, black will be used.

app:baseColor="#0056d3"

BaseColor

  1. Custom Primary Color

Primary color will be used as the activated bottom line color, highlight floating label color, and singleline ellipsis color. You can use app:primaryColor in xml or setPrimaryColor() in java code. If you haven't set a primary color, the base color will be used.

app:baseColor="#0056d3"
app:primaryColor="#982360"

PrimaryColor

  1. Floating Label

There're 3 modes of floating label: none, normal, and highlight. You can use app:floatingLabel in xml or setFloatingLabel() in java code.

normal:

app:floatingLabel="normal"

FloatingLabel

highlight:

app:floatingLabel="highlight"

HighlightFloatingLabel

  1. Single Line Ellipsis

Use app:singleLineEllipsis=true int xml or setSingleLineEllipsis() in java code to enable the ellipsis for when some texts scroll left. Touching the ellipsis jumps the cursor back to the beginning of the string. android:singleLine will be set true automatically when app:singleLineEllipsis is enabled.

NOTE: Single Line Ellipsis may increase the View's height to the bottom.

app:singleLineEllipsis="true"

SingLineEllipsis

  1. Max Characters

Use app:maxCharacters in xml or setMaxCharacters() in java code to set the max characters count. The bottom line will turn red when exceeding max characters. 0, as default, means no max characters. You can also customize the error color using app:errorColor or setErrorColor() in java code.

NOTE: Max Characters may increase the View's height to the bottom.

default error color:

app:maxCharacters="10"

MaxCharacters

custom error color:

app:maxCharacters="10"
app:errorColor="#ddaa00"

CustomErrorColor

Clone this wiki locally