Advertisement
Davencode

Untitled

May 18th, 2021
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.73 KB | None | 0 0
  1.  
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:background="@color/ColorCineBlack"
  9. tools:context=".Frag.CommentiActivity">
  10.  
  11. <androidx.appcompat.widget.LinearLayoutCompat
  12. android:id="@+id/layout_logo"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:orientation="vertical">
  16.  
  17. <LinearLayout
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:orientation="horizontal">
  21.  
  22. <androidx.appcompat.widget.AppCompatImageButton
  23. android:id="@+id/previously"
  24. android:layout_width="32dp"
  25. android:layout_height="32dp"
  26. android:layout_marginStart="10dp"
  27. android:layout_marginTop="10dp"
  28. android:background="@drawable/ic_baseline_arrow_back_ios_24"
  29. android:backgroundTint="@color/ColorCineOrange" />
  30.  
  31. <androidx.appcompat.widget.AppCompatImageView
  32. android:id="@+id/Logo_home"
  33. android:layout_width="match_parent"
  34. android:layout_height="100dp"
  35. android:layout_marginStart="35dp"
  36. android:layout_marginTop="30dp"
  37. android:layout_marginEnd="35dp"
  38. app:layout_constraintEnd_toEndOf="parent"
  39. app:layout_constraintHorizontal_bias="0.507"
  40. app:layout_constraintStart_toStartOf="parent"
  41. app:layout_constraintTop_toTopOf="parent"
  42. app:srcCompat="@drawable/logo_cinemates" />
  43.  
  44. </LinearLayout>
  45.  
  46. <androidx.appcompat.widget.LinearLayoutCompat
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:background="@color/ColorCineOrange"
  50. android:orientation="horizontal"
  51. android:paddingLeft="5dp"
  52. android:paddingTop="5dp"
  53. android:paddingBottom="5dp">
  54.  
  55. <androidx.appcompat.widget.AppCompatTextView
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:fontFamily="@font/maven_pro"
  59. android:text="@string/lista_film"
  60. android:textColor="@color/ColorCineBlack"
  61. android:textSize="18sp"
  62. android:textStyle="bold" />
  63.  
  64. <androidx.appcompat.widget.AppCompatTextView
  65. android:id="@+id/nome_lista"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:fontFamily="@font/maven_pro"
  69. android:textColor="@color/ColorCineBlack"
  70. android:textSize="18sp"
  71. android:textStyle="bold" />
  72. </androidx.appcompat.widget.LinearLayoutCompat>
  73.  
  74. <androidx.appcompat.widget.LinearLayoutCompat
  75. android:id="@+id/descrizione_lista_altro_user_layout"
  76. android:layout_width="match_parent"
  77. android:layout_height="wrap_content"
  78. android:orientation="horizontal">
  79.  
  80. <androidx.appcompat.widget.AppCompatTextView
  81. android:layout_width="wrap_content"
  82. android:layout_height="wrap_content"
  83. android:fontFamily="@font/maven_pro"
  84. android:paddingLeft="5dp"
  85. android:paddingTop="5dp"
  86. android:paddingBottom="5dp"
  87. android:text="@string/descrizione1"
  88. android:textColor="@color/ColorCineOrange"
  89. android:textSize="15sp"
  90. android:textStyle="bold" />
  91.  
  92. <androidx.appcompat.widget.AppCompatTextView
  93. android:id="@+id/descrizione_lista_altro_user"
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:fontFamily="@font/maven_pro"
  97. android:textColor="@color/ColorCineOrange"
  98. android:textSize="15sp"
  99. android:textStyle="bold" />
  100. </androidx.appcompat.widget.LinearLayoutCompat>
  101.  
  102. <androidx.appcompat.widget.LinearLayoutCompat
  103. android:layout_width="match_parent"
  104. android:layout_height="wrap_content"
  105. android:orientation="horizontal">
  106.  
  107. <androidx.recyclerview.widget.RecyclerView
  108. android:id="@+id/film_altro_utente"
  109. android:layout_width="match_parent"
  110. android:layout_height="wrap_content" />
  111.  
  112. </androidx.appcompat.widget.LinearLayoutCompat>
  113.  
  114. <androidx.appcompat.widget.LinearLayoutCompat
  115. android:layout_width="match_parent"
  116. android:layout_height="wrap_content"
  117. android:background="@color/ColorCineOrange"
  118. android:orientation="horizontal"
  119. android:paddingLeft="5dp"
  120. android:paddingTop="5dp"
  121. android:paddingBottom="5dp">
  122.  
  123. <androidx.appcompat.widget.AppCompatTextView
  124. android:layout_width="wrap_content"
  125. android:layout_height="wrap_content"
  126. android:fontFamily="@font/maven_pro"
  127. android:text="@string/commenti"
  128. android:textColor="@color/ColorCineBlack"
  129. android:textSize="18sp"
  130. android:textStyle="bold" />
  131.  
  132. </androidx.appcompat.widget.LinearLayoutCompat>
  133.  
  134. <androidx.appcompat.widget.LinearLayoutCompat
  135. android:layout_width="match_parent"
  136. android:layout_height="match_parent"
  137. android:orientation="vertical">
  138.  
  139. <androidx.recyclerview.widget.RecyclerView
  140. android:id="@+id/commentiUtenti"
  141. android:layout_width="match_parent"
  142. android:layout_height="250dp" />
  143.  
  144. <androidx.appcompat.widget.LinearLayoutCompat
  145. android:layout_width="match_parent"
  146. android:orientation="vertical"
  147. android:layout_gravity="bottom"
  148. android:gravity="bottom"
  149. android:layout_height="match_parent">
  150.  
  151. <androidx.appcompat.widget.LinearLayoutCompat
  152. android:layout_width="match_parent"
  153. android:layout_height="wrap_content"
  154. android:layout_gravity="bottom"
  155. android:baselineAligned="true"
  156. android:orientation="horizontal"
  157. android:weightSum="2">
  158.  
  159. <com.google.android.material.textfield.TextInputLayout
  160. android:id="@+id/Inserisci_Commento"
  161. android:layout_width="250dp"
  162. android:layout_height="wrap_content"
  163. android:layout_marginLeft="5dp"
  164. android:layout_marginRight="10dp"
  165. android:hint="@string/scrivi_un_commento"
  166. android:theme="@style/EditTextPersonalizzati1"
  167. app:passwordToggleTint="@color/ColorCineOrange">
  168.  
  169. <com.google.android.material.textfield.TextInputEditText
  170. android:id="@+id/commenta"
  171. android:layout_width="match_parent"
  172. android:layout_height="match_parent"
  173. android:layout_weight="1"
  174. android:drawableEnd="@drawable/ic_baseline_edit_24"
  175. android:focusableInTouchMode="true"
  176. android:inputType="text"
  177. android:textColor="@color/ColorCineOrange" />
  178.  
  179. </com.google.android.material.textfield.TextInputLayout>
  180. <androidx.appcompat.widget.AppCompatButton
  181. android:id="@+id/invia_commento"
  182. android:layout_width="match_parent"
  183. android:layout_height="match_parent"
  184. android:layout_alignParentRight="true"
  185. android:layout_weight="2"
  186. android:background="@color/ColorCineBlack"
  187. android:fontFamily="@font/maven_pro"
  188. android:text="@string/commenta"
  189. android:textColor="@color/ColorCineOrange"
  190. android:textStyle="bold" />
  191. </androidx.appcompat.widget.LinearLayoutCompat>
  192.  
  193. </androidx.appcompat.widget.LinearLayoutCompat>
  194.  
  195. </androidx.appcompat.widget.LinearLayoutCompat>
  196.  
  197. </androidx.appcompat.widget.LinearLayoutCompat>
  198.  
  199. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement