Skip to content

Instantly share code, notes, and snippets.

@yesidlazaro
Created November 15, 2013 23:18
Show Gist options
  • Save yesidlazaro/7493355 to your computer and use it in GitHub Desktop.
Save yesidlazaro/7493355 to your computer and use it in GitHub Desktop.
Setup for Edittext in a mobile messenger compose activity
<EditText android:id="@+id/edtInput"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
android:imeOptions="actionSend|flagNoEnterAction"
android:maxLines="4"
android:maxLength="2000"
android:hint="@string/compose_hint"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment