Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 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="ntu.ce2006.swensens.hdbdesirabilityapp.ResultsActivity">
  8.  
  9. <LinearLayout
  10. android:id="@+id/linearLayout2"
  11. android:layout_width="0dp"
  12. android:layout_height="467dp"
  13. android:orientation="vertical"
  14. tools:layout_editor_absoluteX="8dp"
  15. tools:layout_editor_absoluteY="6dp">
  16.  
  17. <ListView
  18. android:id="@+id/List"
  19. android:layout_width="match_parent"
  20. android:layout_height="473dp"
  21. tools:layout_editor_absoluteX="66dp"
  22. tools:layout_editor_absoluteY="112dp" />
  23. </LinearLayout>
  24.  
  25. <LinearLayout
  26. android:layout_width="368dp"
  27. android:layout_height="44dp"
  28. android:layout_weight="1"
  29. android:clickable="false"
  30. android:background="@null"
  31. android:orientation="vertical"
  32. app:layout_constraintBottom_toBottomOf="parent"
  33. tools:layout_editor_absoluteX="-3dp">
  34.  
  35. <Button
  36. android:id="@+id/button3"
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:background="@android:color/holo_blue_light"
  40. android:text="Save" />
  41. </LinearLayout>
  42.  
  43. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement