Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin"
  11. tools:context="toymakersdev.com.theinsane.MainActivity"
  12. android:id="@+id/titleScreenLayout"
  13. android:background="@drawable/title_image">
  14.  
  15.  
  16. <Button
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:text="Play"
  20. android:id="@+id/play_button"
  21. android:layout_marginBottom="46dp"
  22. android:textSize="18dp"
  23. android:width="100dp"
  24. android:layout_alignParentBottom="true"
  25. android:layout_centerHorizontal="true"/>
  26.  
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:textAppearance="?android:attr/textAppearanceLarge"
  31. android:text="@string/app_name"
  32. android:id="@+id/textView"
  33. android:textColor="#ffffff"
  34. android:singleLine="false"
  35. android:textAlignment="center"
  36. android:textSize="32dp"
  37. android:layout_marginBottom="12dp"
  38. android:layout_above="@+id/play_button"
  39. android:layout_centerHorizontal="true"/>
  40.  
  41. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement