Proyectos de Subversion Android Microlearning

Rev

Rev 1 | Ir a la última revisión | | 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
 
11
    <com.codesgood.views.JustifiedTextView
12
        android:id="@+id/fragment_quiz_fail_justifytext"
13
        style="@style/textview_quiz_title1"
4 gabriel 14
        android:layout_width="369dp"
15
        android:layout_height="82dp"
16
        android:fontFamily="@font/roboto"
1 efrain 17
        android:text="@string/label_retry_quiz"
4 gabriel 18
        android:textAlignment="center"
19
        android:textSize="20sp"
1 efrain 20
        app:layout_constraintBottom_toBottomOf="parent"
21
        app:layout_constraintLeft_toLeftOf="parent"
22
        app:layout_constraintRight_toRightOf="parent"
23
        app:layout_constraintTop_toTopOf="parent"
24
        app:layout_constraintVertical_bias="0.3" />
25
 
26
    <ImageView
27
        android:layout_width="0dp"
28
        android:layout_height="0dp"
29
        android:src="@drawable/ic_cuestionario_fail"
30
        app:layout_constraintBottom_toBottomOf="parent"
31
        app:layout_constraintHeight_percent="0.5"
32
        app:layout_constraintLeft_toLeftOf="parent"
33
        app:layout_constraintRight_toRightOf="parent"
34
        app:layout_constraintTop_toTopOf="@+id/fragment_quiz_fail_justifytext"
35
        app:layout_constraintWidth_percent="0.5" />
36
 
37
 
38
</androidx.constraintlayout.widget.ConstraintLayout>