|
@@ -3,10 +3,27 @@
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
tools:context=".SplashActivity">
|
|
|
|
|
|
<ImageView
|
|
|
+ android:id="@+id/iv_splash"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/skip_time"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ android:textColor="@color/_ffffff"
|
|
|
+ android:textSize="@dimen/sp_14"
|
|
|
+ android:text="Skip"
|
|
|
+ android:gravity="center"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:layout_marginTop="37dp"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:background="@drawable/shape_66000000_28"/>
|
|
|
+
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|