Advertisement
zza_ibliizt

LoginDatabase login.xml

Dec 19th, 2018
1,321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:orientation="vertical" >
  6.     <EditText
  7.        android:id="@+id/edittext_username"
  8.        android:layout_width="match_parent"
  9.        android:layout_height="wrap_content"
  10.        android:hint="username" />
  11.     <EditText
  12.        android:id="@+id/edittext_password"
  13.        android:layout_width="match_parent"
  14.        android:layout_height="wrap_content"
  15.        android:hint="password"/>
  16.     <Button
  17.        android:id="@+id/button_login"
  18.        android:layout_width="match_parent"
  19.        android:layout_height="wrap_content"
  20.        android:text="Login"/>
  21.     <Button
  22.        android:id="@+id/button_exit"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="wrap_content"
  25.        android:text="Exit"/>
  26. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement