Last active
August 29, 2015 14:21
-
-
Save fatorx/1bfa2b52453d9183a3ed to your computer and use it in GitHub Desktop.
EditText Multiline - Iniciar texto no topo
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
<EditText | |
android:layout_width="match_parent" | |
android:layout_height="180dp" | |
android:textColor="#000000" | |
android:hint="Text Hint Info..." | |
android:textColorHint="#CCCCCC" | |
android:textSize="20dp" | |
android:elegantTextHeight="true" | |
android:id="@+id/edDescription" | |
android:background="#FFF" | |
android:inputType="textMultiLine" | |
android:gravity="top" /> | |
<!-- | |
Atentar para o parâmetros android:inputType="textMultiLine" e android:gravity="top" | |
--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment