activity_history.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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:id="@+id/constraintLayout"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context="de.tu_darmstadt.informatik.tk.olir.HistoryActivity"
  9. tools:layout_editor_absoluteX="0dp"
  10. tools:layout_editor_absoluteY="81dp">
  11. <ScrollView
  12. android:layout_width="fill_parent"
  13. android:layout_height="fill_parent"
  14. android:scrollbars="none"
  15. android:layout_weight="1">
  16. <TableLayout
  17. android:id="@+id/tableLayout"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. app:layout_constraintBottom_toBottomOf="parent"
  21. app:layout_constraintEnd_toEndOf="parent"
  22. app:layout_constraintHorizontal_bias="1.0"
  23. app:layout_constraintStart_toStartOf="parent"
  24. app:layout_constraintTop_toTopOf="parent"
  25. app:layout_constraintVertical_bias="0.0">
  26. </TableLayout>
  27. </ScrollView>
  28. </android.support.constraint.ConstraintLayout>