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
 
9
 
10
    <TextView
11
        style="@style/textview_quiz_title1"
12
        android:id="@+id/fragment_quiz_intro_textview_title"
13
        android:layout_width="wrap_content"
14
        android:layout_height="wrap_content"
15
        android:text="@string/label_evaluation_about"
16
        android:layout_marginTop="10dp"
17
        android:layout_marginLeft="10dp"
18
        app:layout_constraintLeft_toLeftOf="parent"
19
        app:layout_constraintTop_toTopOf="parent"/>
20
 
21
 
22
    <com.codesgood.views.JustifiedTextView
23
        style="@style/textview_quiz_title1"
24
        android:id="@+id/fragment_quiz_intro_justifytext"
25
        android:textAlignment="center"
26
        android:layout_width="wrap_content"
27
        android:layout_height="0dp"
28
        android:layout_marginTop="20dp"
29
        android:layout_marginRight="5dp"
30
        android:layout_marginLeft="5dp"
31
        app:layout_constraintBottom_toBottomOf="parent"
32
        app:layout_constraintLeft_toLeftOf="parent"
33
        app:layout_constraintRight_toRightOf="parent"
34
        app:layout_constraintTop_toBottomOf="@id/fragment_quiz_intro_textview_title"
35
        app:layout_constraintVertical_bias="0.3" />
36
 
37
 
38
    <ImageView
39
        android:layout_width="0dp"
40
        android:layout_height="0dp"
41
        android:src="@drawable/ic_cuestionario_start"
42
        app:layout_constraintBottom_toBottomOf="parent"
43
        app:layout_constraintLeft_toLeftOf="parent"
44
        app:layout_constraintRight_toRightOf="parent"
45
        app:layout_constraintTop_toTopOf="parent"
46
        app:layout_constraintHeight_percent="0.5"
47
        app:layout_constraintWidth_percent="0.5"
48
        />
49
 
50
 
51
</androidx.constraintlayout.widget.ConstraintLayout>