Advertisement
Guest User

activity_failed.xml

a guest
Mar 30th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.15 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     xmlns:tools="http://schemas.android.com/tools"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent">
  5.     <LinearLayout
  6.         android:id="@+id/linearLayout1"
  7.         android:layout_width="wrap_content"
  8.         android:layout_height="wrap_content"
  9.         android:layout_alignParentLeft="true"
  10.         android:layout_alignParentRight="true"
  11.         android:layout_alignParentTop="true">
  12.        
  13.         <TextView
  14.             android:id="@+id/textView1"
  15.             android:layout_width="match_parent"
  16.             android:layout_height="wrap_content"
  17.             android:text="User name atau password salah"
  18.             android:textAppearance="?android:attr/textAppearanceMedium"/>
  19.     </LinearLayout>
  20.    
  21.     <LinearLayout
  22.         android:layout_width="wrap_content"
  23.         android:layout_height="wrap_content"
  24.         android:layout_alignParentLeft="true"
  25.         android:layout_alignParentRight="true"
  26.         android:layout_below="@+id/linearLayout1">
  27.        
  28.         <Button
  29.             android:id="@+id/kembaliButton"
  30.             android:layout_width="wrap_content"
  31.             android:layout_height="wrap_content"
  32.             android:layout_weight="1"
  33.             android:text="Kembali"/>
  34.     </LinearLayout>
  35. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement