| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/splash_fragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?android:colorBackground"
- tools:context=".ui.main.setup.SplashFragment">
- <ImageView
- android:id="@+id/imageView3"
- android:layout_width="@dimen/_60sdp"
- android:layout_height="@dimen/_60sdp"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="@dimen/_50sdp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:contentDescription="@string/app_name"
- android:scaleType="fitCenter"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@mipmap/ic_launcher" />
- <Button
- android:id="@+id/setup_splash_button_start"
- style="@style/Widget.AppCompat.Button.Borderless"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginBottom="16dp"
- android:text="@string/setup_button_start"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent" />
- <TextView
- android:id="@+id/textView13"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="@dimen/_16sdp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:text="@string/setup_welcome"
- android:textSize="@dimen/_24sdp"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/imageView3" />
- <TextView
- android:id="@+id/textView15"
- android:layout_width="@dimen/_140sdp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/_110sdp"
- android:layout_marginLeft="@dimen/_110sdp"
- android:layout_marginTop="@dimen/_94sdp"
- android:text="@string/setup_welcome2"
- android:textSize="@dimen/_14sdp"
- app:layout_constraintStart_toStartOf="@+id/imageView6"
- app:layout_constraintTop_toTopOf="@+id/imageView6" />
- <ImageView
- android:id="@+id/imageView6"
- android:layout_width="@dimen/_160sdp"
- android:layout_height="@dimen/_134sdp"
- android:layout_marginStart="@dimen/_4sdp"
- android:layout_marginLeft="@dimen/_4sdp"
- android:layout_marginTop="@dimen/_16sdp"
- android:contentDescription="@string/content_description_my_phone"
- android:scaleType="centerCrop"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/textView13"
- app:srcCompat="@drawable/ic_my_phone" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|