Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 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.example.mloub.tabeladepontosdieta.ListaAlimentos">
  8.  
  9.  
  10.  
  11. <LinearLayout
  12. android:id="@+id/layoutLista"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_above="@id/layoutBtn">
  16.  
  17. <ListView
  18. android:id="@+id/ListaCalorias"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content">
  21.  
  22. </ListView>
  23. </LinearLayout>
  24.  
  25. <LinearLayout
  26. android:id="@+id/layoutBtn"
  27. android:layout_below="@id/layoutLista"
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:gravity="center"
  31. android:orientation="horizontal"
  32. tools:layout_editor_absoluteX="0dp"
  33. tools:layout_editor_absoluteY="465dp"
  34. android:background="@color/blue"
  35. tools:ignore="MissingConstraints">
  36.  
  37. <Button
  38. android:id="@+id/btnAddAlimento"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"/>
  41.  
  42. <Button
  43. android:id="@+id/btnRemoverAlimento"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"/>
  46. </LinearLayout>
  47.  
  48.  
  49.  
  50.  
  51.  
  52. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement