| 2 |
gabriel |
1 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
2 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
3 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
4 |
android:id="@+id/relativeLayout"
|
|
|
5 |
android:layout_width="match_parent"
|
|
|
6 |
android:layout_height="match_parent"
|
|
|
7 |
tools:context=".activity.SplashActivity">
|
|
|
8 |
|
|
|
9 |
<ImageView
|
|
|
10 |
android:id="@+id/splash_screen"
|
|
|
11 |
android:layout_width="match_parent"
|
|
|
12 |
android:layout_height="match_parent"
|
|
|
13 |
android:contentDescription="@string/app_name"
|
|
|
14 |
android:scaleType="fitXY"
|
|
|
15 |
android:src="@drawable/splash"
|
|
|
16 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
17 |
app:layout_constraintTop_toTopOf="parent" />
|
|
|
18 |
|
|
|
19 |
<ImageView
|
|
|
20 |
android:id="@+id/imageView4"
|
|
|
21 |
android:layout_width="188dp"
|
|
|
22 |
android:layout_height="197dp"
|
|
|
23 |
android:background="@drawable/ic_notificacion"
|
|
|
24 |
android:visibility="visible"
|
|
|
25 |
app:layout_constraintBottom_toBottomOf="@+id/splash_screen"
|
|
|
26 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
27 |
app:layout_constraintHorizontal_bias="0.497"
|
|
|
28 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
29 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
30 |
app:layout_constraintVertical_bias="0.472" />
|
|
|
31 |
|
|
|
32 |
</androidx.constraintlayout.widget.ConstraintLayout>
|