Proyectos de Subversion Android Microlearning

Rev

Rev 4 | Ir a la última revisión | | 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"
14
        android:layout_width="match_parent"
15
        android:layout_height="wrap_content"
16
        android:text="@string/label_retry_quiz"
17
        app:layout_constraintBottom_toBottomOf="parent"
18
        app:layout_constraintLeft_toLeftOf="parent"
19
        app:layout_constraintRight_toRightOf="parent"
20
        app:layout_constraintTop_toTopOf="parent"
21
        app:layout_constraintVertical_bias="0.3" />
22
 
23
    <ImageView
24
        android:layout_width="0dp"
25
        android:layout_height="0dp"
26
        android:src="@drawable/ic_cuestionario_fail"
27
        app:layout_constraintBottom_toBottomOf="parent"
28
        app:layout_constraintHeight_percent="0.5"
29
        app:layout_constraintLeft_toLeftOf="parent"
30
        app:layout_constraintRight_toRightOf="parent"
31
        app:layout_constraintTop_toTopOf="@+id/fragment_quiz_fail_justifytext"
32
        app:layout_constraintWidth_percent="0.5" />
33
 
34
 
35
</androidx.constraintlayout.widget.ConstraintLayout>