Advertisement
Kapshtag

to

Nov 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.24 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.  xmlns:android="http://schemas.android.com/apk/res/android"
  4.  android:orientation="vertical"
  5.  android:layout_width="match_parent"
  6.  android:layout_height="match_parent">
  7.   <TextView
  8.    android:text="Username"
  9.    android:textAppearance="?android:attr/textAppearanceSmall"
  10.    android:layout_width="match_parent"
  11.    android:layout_height="wrap_content"
  12.    android:id="@+id/textView1" />
  13.   <EditText
  14.    android:inputType="textPersonName"
  15.    android:layout_width="match_parent"
  16.    android:layout_height="wrap_content"
  17.    android:minWidth="25px"
  18.    android:minHeight="25px"
  19.    android:id="@+id/userBox" />
  20.   <TextView
  21.    android:text="Password"
  22.    android:textAppearance="?android:attr/textAppearanceSmall"
  23.    android:layout_width="match_parent"
  24.    android:layout_height="wrap_content"
  25.    android:id="@+id/textView2" />
  26.   <EditText
  27.    android:inputType="textPassword"
  28.    android:layout_width="match_parent"
  29.    android:layout_height="wrap_content"
  30.    android:id="@+id/passBox" />
  31.   <Button
  32.    android:text="Login"
  33.    android:layout_width="match_parent"
  34.    android:layout_height="wrap_content"
  35.    android:id="@+id/logButton"
  36.     android:onClick=""/>
  37.  
  38. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement