fragment_close_eyes.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:ignore="ResourceName">
  8. <androidx.constraintlayout.widget.ConstraintLayout
  9. android:id="@+id/eyesLayout"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:layout_margin="@dimen/divider_120px"
  13. android:background="@color/color_FF222222"
  14. app:layout_constraintBottom_toBottomOf="parent"
  15. app:layout_constraintEnd_toEndOf="parent"
  16. app:layout_constraintStart_toStartOf="parent"
  17. app:layout_constraintTop_toTopOf="parent">
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textColor="@android:color/white"
  22. android:textSize="@dimen/divider_120px"
  23. android:textStyle="bold"
  24. android:text="@string/close_the_eyes"
  25. app:layout_constraintBottom_toBottomOf="parent"
  26. app:layout_constraintEnd_toEndOf="parent"
  27. app:layout_constraintStart_toStartOf="parent"
  28. app:layout_constraintTop_toTopOf="parent" />
  29. </androidx.constraintlayout.widget.ConstraintLayout>
  30. </androidx.constraintlayout.widget.ConstraintLayout>