Sendet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fragment_second.xml 1.3KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context=".SecondFragment">
  9. <TextView
  10. android:id="@+id/textview_second"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. app:layout_constraintTop_toTopOf="parent"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintEnd_toEndOf="parent"
  16. app:layout_constraintBottom_toTopOf="@id/button_second"
  17. />
  18. <Button
  19. android:id="@+id/button_second"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="@string/previous"
  23. app:layout_constraintTop_toBottomOf="@id/textview_second"
  24. app:layout_constraintStart_toStartOf="parent"
  25. app:layout_constraintEnd_toEndOf="parent"
  26. app:layout_constraintBottom_toBottomOf="parent"
  27. />
  28. </androidx.constraintlayout.widget.ConstraintLayout>