Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.03 KB | None | 0 0
  1.    <TextView
  2.        android:layout_width="wrap_content"
  3.        android:layout_height="wrap_content"
  4.        android:layout_gravity="center_horizontal"
  5.        android:layout_marginTop="18dp"
  6.        android:text="Selamat Datang"
  7.        android:textSize="24dp"
  8.        android:textStyle="bold" />
  9.  
  10.     <ImageView
  11.        android:layout_width="150dp"
  12.        android:layout_height="250dp"
  13.        android:layout_gravity="center_horizontal"
  14.        android:layout_margin="6dp"
  15.        android:src="@drawable/logobaruupnclean"
  16.        />
  17.  
  18.     <TextView
  19.        android:layout_width="wrap_content"
  20.        android:layout_height="wrap_content"
  21.        android:layout_gravity="center_horizontal"
  22.        android:layout_margin="5dp"
  23.        android:text="Mohon masukan biodata mu"
  24.        android:textSize="16dp" />
  25.  
  26.  
  27.     <LinearLayout
  28.        android:layout_width="match_parent"
  29.        android:layout_height="wrap_content"
  30.        android:layout_margin="18dp"
  31.        android:orientation="horizontal">
  32.  
  33.         <EditText
  34.            android:layout_width="match_parent"
  35.            android:layout_height="wrap_content"
  36.            android:layout_marginRight="18dp"
  37.            android:layout_weight="1"
  38.            android:hint="Nama" />
  39.  
  40.         <EditText
  41.            android:layout_width="match_parent"
  42.            android:layout_height="wrap_content"
  43.            android:layout_weight="1"
  44.            android:hint="NIM" />
  45.  
  46.     </LinearLayout>
  47.  
  48.     <EditText
  49.        android:layout_width="match_parent"
  50.        android:layout_height="wrap_content"
  51.        android:layout_marginLeft="18dp"
  52.        android:layout_marginRight="18dp"
  53.        android:hint="Alamat" />
  54.  
  55.     <Button
  56.        android:id="@+id/buttonSubmit"
  57.        android:layout_width="wrap_content"
  58.        android:layout_height="wrap_content"
  59.        android:layout_gravity="center_horizontal"
  60.        android:layout_marginTop="25dp"
  61.        android:background="@color/colorButton"
  62.        android:fontFamily="sans-serif"
  63.        android:text="Submit" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement