Guest User

Untitled

a guest
Oct 19th, 2017
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.88 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout
  2. android:id="@+id/main_coordinator_container"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:fitsSystemWindows="true">
  6.  
  7. <android.support.design.widget.AppBarLayout
  8. android:id="@+id/appbar_layout"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:background="@color/color_primary"
  12. android:fitsSystemWindows="true"
  13. android:theme="@style/AppTheme.AppBarOverlay">
  14.  
  15. <android.support.design.widget.CollapsingToolbarLayout
  16. android:id="@+id/collapsing_toolbar"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:fitsSystemWindows="true"
  20. app:contentScrim="@color/color_primary"
  21. app:layout_scrollFlags="scroll|exitUntilCollapsed">
  22.  
  23. <ImageView
  24. android:id="@+id/user_photo"
  25. android:layout_width="match_parent"
  26. android:layout_height="@dimen/profile_image_size"
  27. android:background="@drawable/collapsing_photo"
  28. android:fitsSystemWindows="true"
  29. android:scaleType="centerCrop" />
  30.  
  31. <android.support.v7.widget.Toolbar
  32. android:id="@+id/toolbar"
  33. android:layout_width="match_parent"
  34. android:layout_height="?attr/actionBarSize"
  35. android:theme="@style/AppTheme.PopupOverlay"
  36. app:layout_collapseMode="pin"
  37. app:titleTextColor="@color/white">
  38.  
  39. </android.support.v7.widget.Toolbar>
  40. </android.support.design.widget.CollapsingToolbarLayout>
  41.  
  42. </android.support.design.widget.AppBarLayout>
  43.  
  44. <android.support.v4.widget.NestedScrollView
  45. android:id="@+id/nested_scroll"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  49.  
  50. <include layout="@layout/profile_layout"/>
  51. </android.support.v4.widget.NestedScrollView>
  52.  
  53. <include layout="@layout/statistic_panel" />
  54.  
  55. <android.support.design.widget.FloatingActionButton
  56. android:id="@+id/fab"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:layout_marginRight="@dimen/fab_right_space"
  60. android:src="@drawable/ic_create_black_24dp"
  61. app:layout_anchor="@id/appbar_layout"
  62. app:layout_anchorGravity="bottom|right" />
  63. </android.support.design.widget.CoordinatorLayout>
  64.  
  65. <?xml version="1.0" encoding="utf-8"?>
  66. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  67. xmlns:app="http://schemas.android.com/apk/res-auto"
  68. android:id="@+id/ll_stat_layout"
  69. android:layout_width="match_parent"
  70. android:layout_height="wrap_content"
  71. android:layout_gravity="bottom"
  72. android:background="@color/grey"
  73. android:orientation="horizontal"
  74. android:paddingBottom="@dimen/padding_xxlarge_24"
  75. android:paddingTop="@dimen/padding_xxlarge_24"
  76. app:layout_anchor="@id/appbar_layout"
  77. app:layout_anchorGravity="bottom">
  78.  
  79. <LinearLayout
  80. style="@style/panel_item"
  81. android:layout_gravity="center"
  82. android:layout_weight="1">
  83.  
  84. <TextView
  85. style="@style/panel_sub_item"
  86. android:text="5"
  87. android:textSize="@dimen/font_xxlarge_24" />
  88.  
  89. <TextView
  90. style="@style/panel_sub_item"
  91. android:text="@string/panel_raiting"
  92. android:textSize="@dimen/font_large_16" />
  93. </LinearLayout>
  94.  
  95. <View
  96. android:layout_width="@dimen/line_height"
  97. android:layout_height="@dimen/spacing_large_56"
  98. android:background="@color/grey_light" />
  99.  
  100. <LinearLayout
  101. style="@style/panel_item"
  102. android:layout_gravity="center"
  103. android:layout_weight="2">
  104.  
  105. <TextView
  106. style="@style/panel_sub_item"
  107. android:text="25000"
  108. android:textSize="@dimen/font_xxlarge_24" />
  109.  
  110. <TextView
  111. style="@style/panel_sub_item"
  112. android:text="@string/panel_count_code_strings"
  113. android:textSize="@dimen/font_large_16" />
  114. </LinearLayout>
  115.  
  116. <View
  117. android:layout_width="@dimen/line_height"
  118. android:layout_height="@dimen/spacing_large_56"
  119. android:background="@color/grey_light" />
  120.  
  121. <LinearLayout
  122. style="@style/panel_item"
  123. android:layout_gravity="center"
  124. android:layout_weight="1">
  125.  
  126. <TextView
  127. style="@style/panel_sub_item"
  128. android:text="5"
  129. android:textSize="@dimen/font_xxlarge_24" />
  130.  
  131. <TextView
  132. style="@style/panel_sub_item"
  133. android:text="@string/panel_projects"
  134. android:textSize="@dimen/font_large_16" />
  135. </LinearLayout>
  136. </LinearLayout>
  137.  
  138. <?xml version="1.0" encoding="utf-8"?>
  139. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  140. android:layout_width="match_parent"
  141. android:layout_height="wrap_content"
  142. android:orientation="vertical">
  143.  
  144. <LinearLayout
  145. android:layout_width="match_parent"
  146. android:layout_height="wrap_content"
  147. android:layout_marginBottom="@dimen/spacing_small_8"
  148. android:layout_marginTop="@dimen/spacing_small_8"
  149. android:orientation="horizontal">
  150.  
  151. <ImageView
  152. style="@style/icon.left"
  153. android:src="@drawable/ic_call_black_24dp" />
  154.  
  155. <LinearLayout
  156. android:layout_width="0dp"
  157. android:layout_height="@dimen/size_big_72"
  158. android:layout_marginEnd="@dimen/spacing_normal_16"
  159. android:layout_marginLeft="@dimen/spacing_medium_32"
  160. android:layout_marginRight="@dimen/spacing_normal_16"
  161. android:layout_marginStart="@dimen/spacing_medium_32"
  162. android:layout_weight="1"
  163. android:gravity="center_vertical"
  164. android:orientation="vertical">
  165.  
  166. <android.support.design.widget.TextInputLayout
  167. android:layout_width="match_parent"
  168. android:layout_height="wrap_content">
  169.  
  170. <EditText
  171. android:id="@+id/et_phone"
  172. style="@style/item_text_input_layout"
  173. android:hint="@string/layout_text_mobile_phone"
  174. android:inputType="phone"
  175. android:text="+79027888883" />
  176. </android.support.design.widget.TextInputLayout>
  177.  
  178. </LinearLayout>
  179.  
  180. <ImageView
  181. style="@style/icon.right"
  182. android:src="@drawable/ic_phone_in_talk_black_24dp" />
  183. </LinearLayout>
  184.  
  185. <View style="@style/gorizontal_delimeter" />
  186.  
  187.  
  188. <LinearLayout
  189. android:layout_width="match_parent"
  190. android:layout_height="wrap_content"
  191. android:layout_marginBottom="@dimen/spacing_small_8"
  192. android:layout_marginTop="@dimen/spacing_small_8"
  193. android:orientation="horizontal">
  194.  
  195. <ImageView
  196. style="@style/icon.left"
  197. android:src="@drawable/ic_email_black_24dp" />
  198.  
  199. <LinearLayout
  200. android:layout_width="0dp"
  201. android:layout_height="@dimen/size_big_72"
  202. android:layout_marginEnd="@dimen/spacing_normal_16"
  203. android:layout_marginLeft="@dimen/spacing_medium_32"
  204. android:layout_marginRight="@dimen/spacing_normal_16"
  205. android:layout_marginStart="@dimen/spacing_medium_32"
  206. android:layout_weight="1"
  207. android:gravity="center_vertical"
  208. android:orientation="vertical">
  209.  
  210. <android.support.design.widget.TextInputLayout
  211. android:layout_width="match_parent"
  212. android:layout_height="wrap_content">
  213.  
  214. <EditText
  215. android:id="@+id/et_email"
  216. style="@style/item_text_input_layout"
  217. android:hint="@string/layout_text_e_mail"
  218. android:inputType="textEmailAddress"
  219. android:text="my_mail@mail.my" />
  220. </android.support.design.widget.TextInputLayout>
  221.  
  222. </LinearLayout>
  223.  
  224. <ImageView
  225. style="@style/icon.right"
  226. android:src="@drawable/ic_send_black_24dp" />
  227. </LinearLayout>
  228.  
  229. <View style="@style/gorizontal_delimeter" />
  230.  
  231. <LinearLayout
  232. android:layout_width="match_parent"
  233. android:layout_height="wrap_content"
  234. android:layout_marginBottom="@dimen/spacing_small_8"
  235. android:layout_marginTop="@dimen/spacing_small_8"
  236. android:orientation="horizontal">
  237.  
  238. <ImageView
  239. style="@style/icon.left"
  240. android:src="@drawable/vk_circle" />
  241.  
  242. <LinearLayout
  243. android:layout_width="0dp"
  244. android:layout_height="@dimen/size_big_72"
  245. android:layout_marginEnd="@dimen/spacing_normal_16"
  246. android:layout_marginLeft="@dimen/spacing_medium_32"
  247. android:layout_marginRight="@dimen/spacing_normal_16"
  248. android:layout_marginStart="@dimen/spacing_medium_32"
  249. android:layout_weight="1"
  250. android:gravity="center_vertical"
  251. android:orientation="vertical">
  252.  
  253. <android.support.design.widget.TextInputLayout
  254. android:layout_width="match_parent"
  255. android:layout_height="wrap_content">
  256.  
  257. <EditText
  258. android:id="@+id/et_vk"
  259. style="@style/item_text_input_layout"
  260. android:hint="@string/layout_text_vk"
  261. android:text="vk.com/novoselov_roman" />
  262. </android.support.design.widget.TextInputLayout>
  263.  
  264. </LinearLayout>
  265.  
  266. <ImageView
  267. style="@style/icon.right"
  268. android:src="@drawable/eye" />
  269. </LinearLayout>
  270.  
  271. <View style="@style/gorizontal_delimeter" />
  272.  
  273.  
  274. <LinearLayout
  275. android:layout_width="match_parent"
  276. android:layout_height="wrap_content"
  277. android:layout_marginBottom="@dimen/spacing_small_8"
  278. android:layout_marginTop="@dimen/spacing_small_8"
  279. android:orientation="horizontal">
  280.  
  281. <ImageView
  282. style="@style/icon.left"
  283. android:src="@drawable/github_circle" />
  284.  
  285. <LinearLayout
  286. android:layout_width="0dp"
  287. android:layout_height="@dimen/size_big_72"
  288. android:layout_marginEnd="@dimen/spacing_normal_16"
  289. android:layout_marginLeft="@dimen/spacing_medium_32"
  290. android:layout_marginRight="@dimen/spacing_normal_16"
  291. android:layout_marginStart="@dimen/spacing_medium_32"
  292. android:layout_weight="1"
  293. android:gravity="center_vertical"
  294. android:orientation="vertical">
  295.  
  296. <android.support.design.widget.TextInputLayout
  297. android:layout_width="match_parent"
  298. android:layout_height="wrap_content">
  299.  
  300. <EditText
  301. android:id="@+id/et_github"
  302. style="@style/item_text_input_layout"
  303. android:hint="@string/layout_text_repo"
  304. android:text="https://github.com/RNOVOSELOV/DevIntensive" />
  305. </android.support.design.widget.TextInputLayout>
  306.  
  307. </LinearLayout>
  308.  
  309. <ImageView
  310. style="@style/icon.right"
  311. android:src="@drawable/eye" />
  312. </LinearLayout>
  313.  
  314. <View style="@style/gorizontal_delimeter" />
  315.  
  316.  
  317. <LinearLayout
  318. android:layout_width="match_parent"
  319. android:layout_height="wrap_content"
  320. android:layout_marginBottom="@dimen/spacing_small_8"
  321. android:layout_marginTop="@dimen/spacing_small_8"
  322. android:orientation="horizontal">
  323.  
  324. <ImageView
  325. style="@style/icon.left"
  326. android:src="@drawable/account_circle" />
  327.  
  328. <LinearLayout
  329. android:layout_width="0dp"
  330. android:layout_height="wrap_content"
  331. android:layout_marginEnd="@dimen/spacing_normal_16"
  332. android:layout_marginLeft="@dimen/spacing_medium_32"
  333. android:layout_marginRight="@dimen/spacing_normal_16"
  334. android:layout_marginStart="@dimen/spacing_medium_32"
  335. android:layout_weight="1"
  336. android:gravity="center_vertical"
  337. android:orientation="vertical">
  338.  
  339. <android.support.design.widget.TextInputLayout
  340. android:layout_width="match_parent"
  341. android:layout_height="wrap_content"
  342. android:layout_marginBottom="@dimen/margin_small_8">
  343.  
  344. <EditText
  345. android:id="@+id/et_about"
  346. style="@style/item_text_input_layout"
  347. android:hint="@string/layout_text_about"
  348. android:text="@string/about" />
  349. </android.support.design.widget.TextInputLayout>
  350.  
  351. </LinearLayout>
  352.  
  353. </LinearLayout>
  354.  
  355. </LinearLayout>
  356.  
  357. android:layout_gravity="bottom"
  358. app:layout_anchor="@id/appbar_layout"
  359. app:layout_anchorGravity="bottom"
Add Comment
Please, Sign In to add comment