Skip to content

Instantly share code, notes, and snippets.

@theerasan
Last active July 10, 2017 19:10
Show Gist options
  • Save theerasan/3bc6de2b2bbf4dd6068341abb2926061 to your computer and use it in GitHub Desktop.
Save theerasan/3bc6de2b2bbf4dd6068341abb2926061 to your computer and use it in GitHub Desktop.
<AutoCompleteTextView
android:id="@+id/email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/prompt_email"
android:inputType="textEmailAddress"
android:maxLines="1" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/prompt_password"
android:imeActionId="@+id/login"
android:imeActionLabel="@string/action_sign_in_short"
android:imeOptions="actionUnspecified"
android:inputType="textPassword"
android:maxLines="1" />
<Button
android:id="@+id/email_sign_in_button"
style="?android:textAppearanceSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@string/action_sign_in"
android:textStyle="bold" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment