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="wrap_content"
7
    android:layout_marginLeft="5dp"
8
    android:layout_marginTop="3dp"
9
    android:layout_marginRight="5dp"
10
    android:layout_marginBottom="3dp"
11
    android:padding="0dp">
12
 
13
    <androidx.constraintlayout.widget.ConstraintLayout
14
        android:id="@+id/fragment_quiz_multiple_answer_item_constraint"
15
        android:layout_width="0dp"
16
        android:layout_height="wrap_content"
17
        android:background="@drawable/cardview_background_topic"
18
        android:padding="5dp"
19
        app:layout_constraintBottom_toBottomOf="parent"
20
        app:layout_constraintLeft_toLeftOf="parent"
21
        app:layout_constraintTop_toTopOf="parent"
22
 
23
        app:layout_constraintWidth_percent="0.8">
24
 
25
        <TextView
26
            android:id="@+id/textView2"
27
            style="@style/textview_quiz_title2"
28
            android:layout_width="match_parent"
29
            android:layout_height="wrap_content"
30
            android:fontFamily="@font/roboto"
31
            android:text="TextView"
32
            app:layout_constraintBottom_toBottomOf="parent"
33
            app:layout_constraintLeft_toLeftOf="parent"
34
            app:layout_constraintRight_toRightOf="parent"
35
            app:layout_constraintTop_toTopOf="parent" />
36
 
37
 
38
    </androidx.constraintlayout.widget.ConstraintLayout>
39
 
40
    <CheckBox
41
        android:id="@+id/fragment_quiz_multiple_answer_item_checkbox"
42
        android:layout_width="48dp"
43
        android:layout_height="48dp"
44
        android:gravity="center"
45
        android:padding="5dp"
46
        android:theme="@style/CheckBox"
47
        app:layout_constraintBottom_toBottomOf="parent"
48
        app:layout_constraintLeft_toRightOf="@id/fragment_quiz_multiple_answer_item_constraint"
49
        app:layout_constraintRight_toRightOf="parent"
50
        app:layout_constraintTop_toTopOf="parent" />
51
 
52
 
53
</androidx.constraintlayout.widget.ConstraintLayout>