Little_hobbit

Untitled

Dec 8th, 2021
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 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="match_parent"
  7. tools:context=".TabletMainActivity"
  8. android:orientation="horizontal">
  9.  
  10. <LinearLayout
  11. android:layout_width="110dp"
  12. android:layout_height="match_parent"
  13. android:orientation="vertical"
  14. android:gravity="center_horizontal">
  15.  
  16. <Space
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_weight="2"/>
  20.  
  21. <LinearLayout
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:orientation="vertical"
  25. android:gravity="center_horizontal">
  26.  
  27. <ImageView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:src="@drawable/main"/>
  31.  
  32. <TextView
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:text="Главное"/>
  36.  
  37.  
  38. </LinearLayout>
  39.  
  40. <Space
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:layout_weight="1"/>
  44.  
  45.  
  46. <LinearLayout
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:orientation="vertical"
  50. android:gravity="center_horizontal">
  51.  
  52. <ImageView
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:src="@drawable/main"/>
  56.  
  57. <TextView
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:text="Подборка"/>
  61. </LinearLayout>
  62.  
  63. <Space
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:layout_weight="1"/>
  67.  
  68. <LinearLayout
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:orientation="vertical"
  72. android:gravity="center_horizontal">
  73.  
  74. <ImageView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:src="@drawable/main"/>
  78.  
  79. <TextView
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:text="Коллекции"/>
  83. </LinearLayout>
  84.  
  85. <Space
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"
  88. android:layout_weight="10"/>
  89.  
  90.  
  91. <Button
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:layout_marginBottom="30dp"
  95. android:text="Выход"/>
  96.  
  97. </LinearLayout>
  98.  
  99.  
  100. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment