footer_mep.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <TextView
  7. android:id="@+id/footer_mep_text"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginStart="40dp"
  11. android:layout_marginEnd="40dp"
  12. android:gravity="center"
  13. android:text="@string/footer_mep"
  14. android:textStyle="italic"
  15. app:layout_constraintTop_toTopOf="parent"
  16. app:layout_constraintBottom_toTopOf="@id/footer_mep_slot_mapping"
  17. app:layout_constraintStart_toStartOf="parent"
  18. app:layout_constraintEnd_toEndOf="parent" />
  19. <Button
  20. android:id="@+id/footer_mep_slot_mapping"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="@string/slot_mapping"
  24. android:textColor="?attr/colorAccent"
  25. style="?android:attr/borderlessButtonStyle"
  26. app:layout_constraintTop_toBottomOf="@id/footer_mep_text"
  27. app:layout_constraintStart_toStartOf="parent"
  28. app:layout_constraintEnd_toEndOf="parent" />
  29. </androidx.constraintlayout.widget.ConstraintLayout>