Proyectos de Subversion Android Microlearning

Rev

Rev 4 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?xml version="1.0" encoding="utf-8"?>
2
<androidx.constraintlayout.widget.ConstraintLayout
3
    xmlns:android="http://schemas.android.com/apk/res/android"
4
    xmlns:app="http://schemas.android.com/apk/res-auto"
5
    xmlns:tools="http://schemas.android.com/tools"
6
    android:layout_width="match_parent"
7
    android:layout_height="match_parent"
8
    android:padding="5dp">
9
 
10
 
5 gabriel 11
    <com.airbnb.lottie.LottieAnimationView
12
        android:id="@+id/animationView6"
13
        android:layout_width="318dp"
14
        android:layout_height="360dp"
15
        app:layout_constraintBottom_toBottomOf="parent"
16
        app:layout_constraintEnd_toEndOf="parent"
17
        app:layout_constraintHorizontal_bias="0.483"
18
        app:layout_constraintStart_toStartOf="parent"
19
        app:layout_constraintTop_toBottomOf="@+id/textView7"
20
        app:layout_constraintVertical_bias="0.215"
21
        app:lottie_autoPlay="true"
22
        app:lottie_loop="true"
23
        app:lottie_rawRes="@raw/quizsuccess"
24
        tools:visibility="visible" />
25
 
26
    <TextView
27
        android:id="@+id/textView7"
28
        android:layout_width="wrap_content"
29
        android:layout_height="wrap_content"
1 efrain 30
        android:text="@string/label_congratulation_pass_quiz"
31
        android:textAlignment="center"
5 gabriel 32
        android:textColor="@color/black"
33
        android:textSize="20sp"
1 efrain 34
        app:layout_constraintBottom_toBottomOf="parent"
5 gabriel 35
        app:layout_constraintEnd_toEndOf="parent"
36
        app:layout_constraintHorizontal_bias="0.444"
37
        app:layout_constraintStart_toStartOf="parent"
4 gabriel 38
        app:layout_constraintTop_toTopOf="parent"
5 gabriel 39
        app:layout_constraintVertical_bias="0.25" />
1 efrain 40
 
41
 
42
</androidx.constraintlayout.widget.ConstraintLayout>