Advertisement
Treniti

Untitled

Dec 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout 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="com.treniti.anatomio.TermActivity">
  8.  
  9. <android.support.design.widget.AppBarLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:theme="@style/AppTheme.AppBarOverlay">
  13.  
  14. <android.support.v7.widget.Toolbar
  15. android:id="@+id/toolbar_term"
  16. android:layout_width="match_parent"
  17. android:layout_height="?attr/actionBarSize"
  18. android:background="?attr/colorPrimary"
  19. app:popupTheme="@style/AppTheme.PopupOverlay" />
  20.  
  21.  
  22. </android.support.design.widget.AppBarLayout>
  23. <TextView
  24. android:id="@+id/termTitle"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="16dp"
  28. android:layout_marginTop="16dp"
  29. android:fontFamily="@font/roboto"
  30. android:text="TextView"
  31. android:textColor="#000"
  32. app:layout_constraintLeft_toLeftOf="parent" />
  33.  
  34.  
  35. <TextView
  36. android:id="@+id/termLatTitle"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_marginLeft="16dp"
  40. android:layout_marginTop="8dp"
  41. android:fontFamily="@font/roboto_light"
  42. android:text="TextView"
  43. android:textColor="#555"
  44. android:textSize="12sp"
  45. app:layout_constraintLeft_toLeftOf="parent"
  46. app:layout_constraintTop_toBottomOf="@+id/termTitle" />
  47.  
  48. <TextView
  49. android:id="@+id/termValue"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_marginLeft="16dp"
  53. android:layout_marginTop="8dp"
  54. android:fontFamily="@font/roboto"
  55. android:textColor="#000"
  56. android:text="TextView"
  57. app:layout_constraintLeft_toLeftOf="parent"
  58. app:layout_constraintTop_toBottomOf="@+id/termLatTitle" />
  59. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement