Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9. <Button
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:text="@string/alarm"
  13. android:background="@color/Coral"/>
  14. <Button
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:text="@string/settings"
  18. android:background="@color/LightSalmon"/>
  19. <Button
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:text="@string/clock"
  23. android:background="@android:color/holo_green_light"/>
  24. <Button
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:text="@string/notifications"
  28. android:background="@android:color/transparent"/>
  29. <Button
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:text="@string/toDoList"
  33. android:background="@color/PaleTurquoise"/>
  34. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement