Proyectos de Subversion Android Microlearning

Rev

Rev 4 | Ir a la última revisión | | 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_marginStart="5dp"
8
    android:layout_marginLeft="5dp"
9
    android:layout_marginTop="10dp"
1 efrain 10
    android:padding="0dp">
11
 
12
    <androidx.constraintlayout.widget.ConstraintLayout
13
        android:id="@+id/fragment_quiz_single_answer_item_constraint"
14
        android:layout_width="0dp"
15
        android:layout_height="wrap_content"
16
        android:background="@drawable/cardview_background_topic"
4 gabriel 17
 
18
        android:gravity="center"
19
        android:padding="6dp"
1 efrain 20
        app:layout_constraintBottom_toBottomOf="parent"
4 gabriel 21
        app:layout_constraintEnd_toStartOf="@+id/fragment_quiz_single_answer_item_radio"
1 efrain 22
        app:layout_constraintLeft_toLeftOf="parent"
23
        app:layout_constraintTop_toTopOf="parent"
4 gabriel 24
        app:layout_constraintWidth_percent="0.9">
1 efrain 25
 
26
        <com.codesgood.views.JustifiedTextView
27
            android:id="@+id/fragment_quiz_single_answer_item_justifytextview"
28
            style="@style/textview_quiz_title2"
29
            android:layout_width="match_parent"
30
            android:layout_height="wrap_content"
31
            app:layout_constraintBottom_toBottomOf="parent"
32
            app:layout_constraintLeft_toLeftOf="parent"
33
            app:layout_constraintRight_toRightOf="parent"
4 gabriel 34
            app:layout_constraintTop_toTopOf="parent"
35
            tools:visibility="gone" />
1 efrain 36
 
4 gabriel 37
        <TextView
38
            android:id="@+id/textView3"
39
            android:layout_width="0dp"
40
            android:layout_height="wrap_content"
41
            android:text="TextView"
42
            android:textColor="@color/black"
5 gabriel 43
            android:textSize="16sp"
4 gabriel 44
            app:layout_constraintEnd_toEndOf="parent"
45
            app:layout_constraintHorizontal_bias="0.0"
46
            app:layout_constraintRight_toRightOf="parent"
47
            app:layout_constraintStart_toStartOf="parent"
48
            app:layout_constraintTop_toTopOf="parent"
49
            tools:visibility="visible" />
50
 
1 efrain 51
    </androidx.constraintlayout.widget.ConstraintLayout>
52
 
53
    <RadioButton
54
        android:id="@+id/fragment_quiz_single_answer_item_radio"
4 gabriel 55
        android:layout_width="48dp"
56
        android:layout_height="48dp"
57
        android:layout_marginStart="4dp"
58
        android:layout_marginTop="15dp"
1 efrain 59
        android:padding="5dp"
60
        android:theme="@style/CheckBox"
61
        app:layout_constraintBottom_toBottomOf="parent"
62
        app:layout_constraintRight_toRightOf="parent"
4 gabriel 63
        app:layout_constraintStart_toEndOf="@+id/fragment_quiz_single_answer_item_constraint"
64
        app:layout_constraintTop_toTopOf="parent"
65
        app:layout_constraintVertical_bias="0.0" />
1 efrain 66
 
67
 
68
</androidx.constraintlayout.widget.ConstraintLayout>