Proyectos de Subversion Android Microlearning

Rev

Rev 1 | | 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 xmlns:android="http://schemas.android.com/apk/res/android"
3
xmlns:app="http://schemas.android.com/apk/res-auto"
5 gabriel 4
    xmlns:tools="http://schemas.android.com/tools"
5
    android:layout_width="match_parent"
1 efrain 6
android:layout_height="match_parent"
7
android:padding="5dp">
8
 
9
    <TextView
5 gabriel 10
        android:id="@+id/justifytext_quiz_range_simple_answer_textview_title"
1 efrain 11
        style="@style/textview_quiz_title1"
12
        android:layout_width="wrap_content"
13
        android:layout_height="wrap_content"
5 gabriel 14
        android:layout_marginLeft="10dp"
15
        android:layout_marginTop="10dp"
16
        android:fontFamily="@font/roboto"
1 efrain 17
        android:text="@string/label_evaluation_about"
18
        app:layout_constraintLeft_toLeftOf="parent"
5 gabriel 19
        app:layout_constraintTop_toTopOf="parent" />
1 efrain 20
 
5 gabriel 21
    <TextView
22
        android:id="@+id/textView8"
1 efrain 23
        android:layout_width="wrap_content"
24
        android:layout_height="wrap_content"
5 gabriel 25
        android:layout_marginTop="16dp"
26
        android:fontFamily="@font/roboto"
27
        android:textAlignment="center"
28
        android:textColor="@color/black"
29
        android:textSize="20sp"
30
        android:textStyle="bold"
31
        app:layout_constraintEnd_toEndOf="parent"
32
        app:layout_constraintHorizontal_bias="0.498"
33
        app:layout_constraintStart_toStartOf="parent"
34
        app:layout_constraintTop_toBottomOf="@+id/justifytext_quiz_range_simple_answer_textview_title" />
1 efrain 35
 
36
    <androidx.recyclerview.widget.RecyclerView
37
        android:id="@+id/list_quiz_range_simple_answer"
38
        android:layout_width="match_parent"
39
        android:layout_height="0dp"
40
        app:layout_constraintBottom_toBottomOf="parent"
41
        app:layout_constraintLeft_toLeftOf="parent"
5 gabriel 42
        app:layout_constraintRight_toRightOf="parent"
43
        app:layout_constraintTop_toBottomOf="@+id/textView8" />
1 efrain 44
 
45
</androidx.constraintlayout.widget.ConstraintLayout>