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"?>
4 gabriel 2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
1 efrain 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"
4 gabriel 7
    android:layout_marginLeft="5dp"
8
    android:layout_marginTop="3dp"
9
    android:layout_marginRight="5dp"
10
    android:layout_marginBottom="3dp"
1 efrain 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
 
4 gabriel 25
        <TextView
26
            android:id="@+id/textView2"
1 efrain 27
            style="@style/textview_quiz_title2"
28
            android:layout_width="match_parent"
29
            android:layout_height="wrap_content"
4 gabriel 30
            android:fontFamily="@font/roboto"
31
            android:text="TextView"
1 efrain 32
            app:layout_constraintBottom_toBottomOf="parent"
33
            app:layout_constraintLeft_toLeftOf="parent"
4 gabriel 34
            app:layout_constraintRight_toRightOf="parent"
35
            app:layout_constraintTop_toTopOf="parent" />
1 efrain 36
 
4 gabriel 37
 
1 efrain 38
    </androidx.constraintlayout.widget.ConstraintLayout>
39
 
40
    <CheckBox
41
        android:id="@+id/fragment_quiz_multiple_answer_item_checkbox"
4 gabriel 42
        android:layout_width="48dp"
43
        android:layout_height="48dp"
44
        android:gravity="center"
1 efrain 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"
4 gabriel 50
        app:layout_constraintTop_toTopOf="parent" />
1 efrain 51
 
52
 
53
</androidx.constraintlayout.widget.ConstraintLayout>