Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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 gabriel 21
        android:layout_width="255dp"
22
        android:layout_height="342dp"
23
        app:layout_constraintBottom_toBottomOf="parent"
2 gabriel 24
        app:layout_constraintEnd_toEndOf="parent"
25
        app:layout_constraintStart_toStartOf="parent"
21 gabriel 26
        app:layout_constraintTop_toTopOf="parent" />
2 gabriel 27
 
28
</androidx.constraintlayout.widget.ConstraintLayout>