dialog_count_down.xml 1022 B

1234567891011121314151617181920212223
  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. android:background="@drawable/bg_game_introduction"
  8. tools:ignore="ResourceName">
  9. <androidx.appcompat.widget.AppCompatTextView
  10. android:id="@+id/tvCountdown"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:textColor="@android:color/white"
  14. android:textSize="@dimen/divider_200px"
  15. android:textStyle="bold"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. app:layout_constraintEnd_toEndOf="parent"
  18. app:layout_constraintStart_toStartOf="parent"
  19. app:layout_constraintTop_toTopOf="parent"
  20. tools:text="3" />
  21. </androidx.constraintlayout.widget.ConstraintLayout>