0
var tel_text = "Enter your phone number"

Consider that the edittext is tel_text with a large font. When the user starts writing this article in edittext, I want it to be animated from bottom to top. How can I customize Edittext the easiest?

John Joe
  • 12,412
  • 16
  • 70
  • 135
Gorkem KARA
  • 173
  • 4
  • 14

1 Answers1

0

It looks like you want to add a hint to it which animates to the top when user begins to type. Wrap it inside TextInputLayout

<android.support.design.widget.TextInputLayout
    android:id="@+id/edt_hint"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="Enter your phone number">

    <EditText
        android:id="@+id/edit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />


</android.support.design.widget.TextInputLayout>
AskNilesh
  • 67,701
  • 16
  • 123
  • 163