Last active
July 8, 2016 20:10
-
-
Save paulodevbr/9828602b90ab14d50ee030ce00ade72b to your computer and use it in GitHub Desktop.
EditText with animated placeholder text in Android Apps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<android.support.design.widget.TextInputLayout | |
android:id="@+id/settings_weight_input" | |
android:layout_width="@dimen/edit_text" | |
android:layout_height="wrap_content" | |
android:animateLayoutChanges="true" | |
android:layout_alignParentLeft="true"> | |
<android.support.design.widget.TextInputEditText | |
android:id="@+id/settings_weight_edt" | |
android:layout_height="match_parent" | |
android:layout_width="match_parent" | |
android:inputType="number" | |
android:maxLength="3" | |
android:theme="@style/AppTheme" | |
android:hint="@string/peso_name" /> | |
</android.support.design.widget.TextInputLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment