Guest User

Untitled

a guest
Jul 9th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/background">
  6.  
  7. <EditText
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:id="@+id/editText"
  11. android:layout_below="@+id/txtn"
  12. android:layout_marginTop="50dp"
  13. android:inputType="number"
  14. android:background="#ffffff"
  15. android:layout_alignParentRight="true"
  16. android:layout_alignParentEnd="true"
  17. android:layout_alignParentLeft="true"
  18. android:layout_alignParentStart="true" />
  19.  
  20. <TextView
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:textAppearance="?android:attr/textAppearanceLarge"
  24. android:text="@string/firstlogmes"
  25. android:id="@+id/txtn"
  26. android:layout_alignParentTop="true"
  27. android:layout_marginTop="30dp"
  28. android:layout_centerHorizontal="true" />
  29.  
  30. <Button
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:text="@string/startbutt"
  34. android:id="@+id/startbutt"
  35. android:layout_below="@+id/editText"
  36. android:layout_centerHorizontal="true"
  37. android:background="#FFFF00"
  38. android:layout_marginTop="41dp" />
  39.  
  40. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment