Advertisement
Guest User

Untitled

a guest
Aug 16th, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".views.MainTeamPage.MainTeamPageFragment"
  7. android:background="@color/colorPrimary"
  8. >
  9.  
  10. <FrameLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent">
  13. <ImageView
  14. android:id="@+id/background_image"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:scaleType="centerCrop"/>
  18. </FrameLayout>
  19. <FrameLayout
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content">
  22.  
  23. <RelativeLayout
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. >
  27. <Button
  28. android:id="@+id/team_info_button"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="Team Info"
  32. android:layout_alignParentLeft="true"
  33. android:layout_alignParentTop="true"/>
  34. <Button
  35. android:id="@+id/gallery_button"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:text="Gallery"
  39. android:layout_alignParentRight="true"
  40. android:layout_alignParentTop="true"
  41. />
  42. <Button
  43. android:id="@+id/starting_five_button"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:text="Your Starting 5"
  47. android:layout_alignParentRight="true"
  48. android:layout_alignParentBottom="true"
  49. />
  50. <Button
  51. android:id="@+id/full_roster_button"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:text="Full Roster"
  55. android:layout_alignParentLeft="true"
  56. android:layout_alignParentBottom="true"
  57. />
  58.  
  59.  
  60. </RelativeLayout>
  61.  
  62. </FrameLayout>
  63.  
  64.  
  65.  
  66.  
  67. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement