Skip to content

Instantly share code, notes, and snippets.

@fatorx
Last active August 29, 2015 14:21
Show Gist options
  • Save fatorx/1bfa2b52453d9183a3ed to your computer and use it in GitHub Desktop.
Save fatorx/1bfa2b52453d9183a3ed to your computer and use it in GitHub Desktop.
EditText Multiline - Iniciar texto no topo
<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