Guest User

Untitled

a guest
Jan 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 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:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. tools:context="com.example.usuario.ejemplo.ejemplo">
  8.  
  9. <ScrollView
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. >
  13.  
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="vertical"
  18. >
  19. <TextView
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:text="Nombre:"
  23. android:textSize="15dp"
  24. android:textAlignment="center"
  25. android:paddingTop="10dp"/>
  26.  
  27. <TextView
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:text="Código:"
  31. android:textSize="15dp"
  32. android:textAlignment="center" />
  33.  
  34. <TextView
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content"
  37. android:text="Fecha de instalación:"
  38. android:textSize="15dp"
  39. android:textAlignment="center" />
  40.  
  41. <TextView
  42. android:layout_width="match_parent"
  43. android:layout_height="wrap_content"
  44. android:text="Ubicación: "
  45. android:textSize="15dp"
  46. android:textAlignment="center" />
  47.  
  48. <TextView
  49. android:layout_width="match_parent"
  50. android:layout_height="wrap_content"
  51. android:text="Departamento:"
  52. android:textSize="15dp"
  53. android:textAlignment="center" />
  54.  
  55. <TextView
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. android:text="Municipio: "
  59. android:textSize="15dp"
  60. android:textAlignment="center" />
  61.  
  62. <TextView
  63. android:layout_width="match_parent"
  64. android:layout_height="wrap_content"
  65. android:text="Altitud: "
  66. android:textSize="15dp"
  67. android:textAlignment="center" />
  68.  
  69. <TextView
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:textAppearance="?android:attr/textAppearanceLarge"
  73. android:text="Corriente: "
  74. android:textSize="15dp"
  75. android:textAlignment="center" />
  76.  
  77. <TextView
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content"
  80. android:textAppearance="?android:attr/textAppearanceLarge"
  81. android:text="Variables"
  82. android:id="@+id/textView12"
  83. android:layout_gravity="center_horizontal"
  84. android:textSize="20dp"
  85. android:textAlignment="center"
  86. android:paddingBottom="10dp"
  87. android:paddingTop="10dp"/>
  88.  
  89. <android.support.v7.widget.RecyclerView
  90. android:id="@+id/recyclerId"
  91. android:layout_width="match_parent"
  92. android:layout_height="584dp"
  93. >
  94.  
  95. </android.support.v7.widget.RecyclerView>
  96. </LinearLayout>
  97. </ScrollView>
  98. </LinearLayout>
Add Comment
Please, Sign In to add comment