Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:fresco="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#b7000000"
  8. android:clickable="true"
  9. >
  10.  
  11. <com.facebook.drawee.view.SimpleDraweeView
  12. android:layout_width="200dp"
  13. android:layout_height="200dp"
  14. android:layout_gravity="right|top"
  15. android:clickable="true"
  16. android:layout_marginRight="-60dp"
  17. android:layout_marginTop="-70dp"
  18. fresco:backgroundImage="@color/transparent_white"
  19. fresco:roundAsCircle="true"
  20. />
  21.  
  22. <RelativeLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_gravity="center">
  26.  
  27. <ImageView
  28. android:id="@+id/search_icon"
  29. android:layout_width="40dp"
  30. android:layout_height="?actionBarSize"
  31. android:layout_marginLeft="10dp"
  32. android:layout_marginRight="2dp"
  33. android:src="@drawable/ic_search_white_24dp"
  34. />
  35.  
  36. <TextView
  37. android:id="@+id/search_tutorial_text"
  38. android:layout_width="match_parent"
  39. android:layout_height="?actionBarSize"
  40. android:layout_alignParentTop="true"
  41. android:layout_marginRight="5dp"
  42. android:layout_toEndOf="@+id/search_icon"
  43. android:gravity="center"
  44. android:text="Search Food, Restaurants, Cusines"
  45. android:textAppearance="?android:textAppearanceLarge"
  46. android:textColor="@android:color/white"
  47. android:textSize="18dp"
  48. />
  49.  
  50. <ImageView
  51. android:id="@+id/refresh_icon"
  52. android:layout_width="40dp"
  53. android:layout_height="?actionBarSize"
  54. android:layout_below="@id/search_icon"
  55. android:layout_marginLeft="10dp"
  56. android:layout_marginRight="2dp"
  57. android:src="@drawable/ic_loop_white_24dp"
  58. />
  59.  
  60. <TextView
  61. android:layout_width="match_parent"
  62. android:layout_height="?actionBarSize"
  63. android:layout_below="@id/search_tutorial_text"
  64. android:layout_marginRight="5dp"
  65. android:layout_toEndOf="@+id/refresh_icon"
  66. android:gravity="center"
  67. android:text="Refresh when connectivity fails"
  68. android:textAppearance="?android:textAppearanceLarge"
  69. android:textColor="@android:color/white"
  70. android:textSize="18dp"
  71. />
  72. </RelativeLayout>
  73.  
  74. <Button
  75. android:id="@+id/dismiss_tutorial_menuitems"
  76. android:layout_width="wrap_content"
  77. android:layout_height="wrap_content"
  78. android:layout_gravity="center|bottom"
  79. android:background="#b96273d4"
  80. android:textColor="@android:color/white"
  81. android:text="GOT IT"
  82. android:layout_marginBottom="50dp"/>
  83.  
  84. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement