Guest User

Untitled

a guest
Jan 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. <LinearLayout
  2. android:layout_width="wrap_content"
  3. android:layout_centerInParent="true"
  4. android:orientation="vertical"
  5. android:layout_height="wrap_content">
  6.  
  7.  
  8. <LinearLayout
  9. android:layout_width="wrap_content"
  10. android:orientation="horizontal"
  11. android:layout_height="wrap_content">
  12.  
  13. <TextView
  14.  
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:id="@+id/text_view_morning"
  18. android:layout_marginRight="6dp"
  19. android:text="Утро " />
  20.  
  21.  
  22. <Button
  23. android:id="@+id/button_morning_time"
  24. style="@style/Widget.AppCompat.Button.Colored"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:text="Введите"
  28. android:textStyle="bold" />
  29.  
  30.  
  31. </LinearLayout>
  32.  
  33. <LinearLayout
  34. android:layout_width="wrap_content"
  35. android:orientation="horizontal"
  36. android:layout_height="wrap_content">
  37. <TextView
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:id="@+id/text_view_evening"
  41. android:text="Вечер "/>
  42.  
  43. <Button
  44. android:id="@+id/button_evening_time"
  45. style="@style/Widget.AppCompat.Button.Colored"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:text="Введите"
  49. android:textStyle="bold" />
  50.  
  51. </LinearLayout>
  52.  
  53. <Button
  54. android:layout_width="wrap_content"
  55. android:text="Сохранить"
  56. android:id="@+id/save_button"
  57. android:textStyle="bold"
  58. android:layout_height="wrap_content"
  59. style="@style/Widget.AppCompat.Button.Colored" />
  60.  
  61. </LinearLayout>
  62. </RelativeLayout>
Add Comment
Please, Sign In to add comment