Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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. tools:context=".MainActivity"
  7. android:background="@color/background">
  8.  
  9. <LinearLayout
  10. android:id="@+id/saldoLinearLayout"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:orientation="horizontal">
  14.  
  15. <TextView
  16. android:id="@+id/saldoTextView"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_weight="1"
  20. android:text="@string/saldo"
  21. android:textColor="@color/letra"
  22. android:textSize="24sp"
  23. android:textAlignment="center"/>
  24. </LinearLayout>
  25.  
  26. <TableLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content">
  29.  
  30. <TableRow
  31. android:layout_width="match_parent"
  32. android:layout_height="match_parent" />
  33.  
  34. </TableLayout>
  35.  
  36. <TableLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent">
  39.  
  40. <TableRow
  41. android:layout_width="match_parent"
  42. android:layout_height="match_parent" />
  43.  
  44. <TableRow
  45. android:layout_width="match_parent"
  46. android:layout_height="match_parent" />
  47.  
  48. <TableRow
  49. android:layout_width="match_parent"
  50. android:layout_height="match_parent" />
  51.  
  52. <TableRow
  53. android:layout_width="match_parent"
  54. android:layout_height="match_parent" />
  55. </TableLayout>
  56.  
  57. <TableLayout
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. android:layout_alignParentTop="true"
  61. android:layout_alignParentStart="true">
  62.  
  63. <TableRow
  64. android:layout_width="match_parent"
  65. android:layout_height="match_parent" />
  66.  
  67. </TableLayout>
  68.  
  69. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement