Proyectos de Subversion Android Microlearning - Inconcert

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 gabriel 1
<?xml version="1.0" encoding="utf-8"?>
2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
xmlns:app="http://schemas.android.com/apk/res-auto"
4
    xmlns:tools="http://schemas.android.com/tools"
5
    android:layout_width="match_parent"
6
android:layout_height="match_parent"
7
android:padding="5dp">
8
 
9
    <TextView
10
        android:id="@+id/justifytext_quiz_single_answer_textview_title"
11
        style="@style/textview_quiz_title1"
12
        android:layout_width="wrap_content"
13
        android:layout_height="wrap_content"
14
        android:layout_marginLeft="10dp"
15
        android:layout_marginTop="10dp"
16
        android:fontFamily="@font/roboto"
17
        android:text="@string/label_evaluation_about"
18
        app:layout_constraintLeft_toLeftOf="parent"
19
        app:layout_constraintTop_toTopOf="parent" />
20
 
21
 
22
    <TextView
23
        android:id="@+id/textView4"
24
        android:layout_width="0dp"
25
        android:layout_height="wrap_content"
26
        android:layout_marginTop="5dp"
27
        android:fontFamily="@font/roboto"
28
        android:textAlignment="center"
29
        android:textColor="@color/black"
30
        android:textSize="22dp"
31
        android:textStyle="bold"
32
        app:layout_constraintLeft_toLeftOf="parent"
33
        app:layout_constraintRight_toRightOf="parent"
34
        app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_single_answer_textview_title" />
35
 
36
    <androidx.recyclerview.widget.RecyclerView
37
        android:id="@+id/list_quiz_single_answer"
38
        android:layout_width="0dp"
39
        android:layout_height="0dp"
40
        app:layout_constraintBottom_toBottomOf="parent"
41
        app:layout_constraintHorizontal_bias="0.444"
42
        app:layout_constraintLeft_toLeftOf="parent"
43
        app:layout_constraintRight_toRightOf="parent"
44
        app:layout_constraintTop_toBottomOf="@id/textView4"
45
        app:layout_constraintVertical_bias="1.0" />
46
 
47
</androidx.constraintlayout.widget.ConstraintLayout>