Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. <!-- Difficulty -->
  2. <LinearLayout
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:paddingTop="10dp"
  6. android:orientation="horizontal">
  7.  
  8. <TextView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:textSize="30sp"
  12. android:layout_marginTop="10dp"
  13. android:layout_marginBottom="10dp"
  14. android:layout_marginRight="10dp"
  15. android:layout_marginLeft="5dp"
  16. android:text="Difficulty"
  17. android:fontFamily="sans-serif-condensed-medium"
  18. android:textColor="#F1EEEE"/>
  19.  
  20. <Button
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:textSize="25sp"
  24. android:layout_marginTop="10dp"
  25. android:layout_marginBottom="10dp"
  26. android:layout_marginLeft="5dp"
  27. android:text="Low"
  28. android:background="#F1EEEE"
  29. android:fontFamily="sans-serif-condensed-light"
  30. android:textColor="#E67870"/>
  31.  
  32. <Button
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:textSize="25sp"
  36. android:layout_marginTop="10dp"
  37. android:layout_marginBottom="10dp"
  38. android:layout_marginLeft="5dp"
  39. android:text="Medium"
  40. android:background="#F1EEEE"
  41. android:fontFamily="sans-serif-condensed-light"
  42. android:textColor="#E67870"/>
  43.  
  44. <Button
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:textSize="25sp"
  48. android:layout_marginTop="10dp"
  49. android:layout_marginBottom="10dp"
  50. android:layout_marginLeft="5dp"
  51. android:text="Hard"
  52. android:background="#F1EEEE"
  53. android:fontFamily="sans-serif-condensed-light"
  54. android:textColor="#E67870"/>
  55.  
  56. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement