Advertisement
Guest User

Untitled

a guest
May 25th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.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:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. android:orientation="vertical">
  11.  
  12.  
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:orientation="horizontal">
  17.  
  18.  
  19. <TextView
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:text="EdiSeguro: Empresa Luis - Câmaras"
  23. android:textSize="16sp"
  24. android:gravity="center"
  25. android:layout_marginTop="0dp"
  26. android:background="#999999"/>
  27.  
  28. </LinearLayout>
  29.  
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="wrap_content"
  33. android:orientation="horizontal"
  34. android:layout_marginTop="10dp">
  35.  
  36. <ImageButton
  37. android:layout_width="100dp"
  38. android:layout_height="90dp"
  39. android:background="@drawable/camara"
  40. android:layout_marginLeft="44dp"
  41. android:layout_marginRight="50dp"
  42. android:id="@+id/cam1"/>
  43.  
  44. <ImageButton
  45. android:layout_width="100dp"
  46. android:layout_height="90dp"
  47. android:background="@drawable/camara"
  48. android:id="@+id/cam2"/>
  49.  
  50. </LinearLayout>
  51.  
  52.  
  53. <LinearLayout
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:layout_marginTop="15dp"
  57. android:orientation="horizontal">
  58.  
  59. <ImageButton
  60. android:layout_width="100dp"
  61. android:layout_height="90dp"
  62. android:background="@drawable/camara"
  63. android:layout_marginLeft="44dp"
  64. android:layout_marginRight="50dp"
  65. android:id="@+id/cam3"/>
  66.  
  67. <ImageButton
  68. android:layout_width="100dp"
  69. android:layout_height="90dp"
  70. android:background="@drawable/camara"
  71. android:id="@+id/cam4"/>
  72.  
  73. </LinearLayout>
  74.  
  75. <LinearLayout
  76. android:layout_width="match_parent"
  77. android:layout_height="wrap_content"
  78. android:layout_marginTop="15dp"
  79. android:orientation="horizontal">
  80.  
  81. <ImageButton
  82. android:layout_width="100dp"
  83. android:layout_height="90dp"
  84. android:background="@drawable/camara"
  85. android:layout_marginLeft="44dp"
  86. android:layout_marginRight="50dp"
  87. android:id="@+id/cam5"/>
  88.  
  89. <ImageButton
  90. android:layout_width="100dp"
  91. android:layout_height="90dp"
  92. android:background="@drawable/camara"
  93. android:id="@+id/cam6"/>
  94.  
  95. </LinearLayout>
  96.  
  97. <LinearLayout
  98. android:layout_width="match_parent"
  99. android:layout_height="wrap_content"
  100. android:layout_marginTop="15dp"
  101. android:orientation="horizontal">
  102.  
  103. <ImageButton
  104. android:layout_width="100dp"
  105. android:layout_height="90dp"
  106. android:background="@drawable/camara"
  107. android:layout_marginLeft="44dp"
  108. android:id="@+id/cam7"/>
  109. <ImageButton
  110. android:layout_width="100dp"
  111. android:layout_height="90dp"
  112. android:background="@drawable/camara"
  113. android:layout_marginLeft="50dp"
  114. android:id="@+id/cam8"/>
  115.  
  116. </LinearLayout>
  117.  
  118. <LinearLayout
  119. android:layout_width="match_parent"
  120. android:layout_height="wrap_content"
  121. android:orientation="horizontal"
  122. android:id="@+id/sair">
  123.  
  124. <TextView
  125. android:layout_width="wrap_content"
  126. android:layout_height="20dp"
  127. android:text="Ajuda"
  128. android:textSize="16sp"
  129. android:layout_marginTop="15dp"
  130. android:layout_marginLeft="270dp"
  131. android:id="@+id/ajuda"/>
  132.  
  133. </LinearLayout>
  134.  
  135. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement