Proyectos de Subversion Android Microlearning

Rev

Rev 5 | | 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
 
4 gabriel 27
        <TextView
28
            android:id="@+id/textView3"
29
            android:layout_width="0dp"
30
            android:layout_height="wrap_content"
31
            android:text="TextView"
32
            android:textColor="@color/black"
5 gabriel 33
            android:textSize="16sp"
4 gabriel 34
            app:layout_constraintEnd_toEndOf="parent"
35
            app:layout_constraintHorizontal_bias="0.0"
36
            app:layout_constraintRight_toRightOf="parent"
37
            app:layout_constraintStart_toStartOf="parent"
38
            app:layout_constraintTop_toTopOf="parent"
39
            tools:visibility="visible" />
40
 
1 efrain 41
    </androidx.constraintlayout.widget.ConstraintLayout>
42
 
43
    <RadioButton
44
        android:id="@+id/fragment_quiz_single_answer_item_radio"
4 gabriel 45
        android:layout_width="48dp"
46
        android:layout_height="48dp"
47
        android:layout_marginStart="4dp"
48
        android:layout_marginTop="15dp"
1 efrain 49
        android:padding="5dp"
50
        android:theme="@style/CheckBox"
51
        app:layout_constraintBottom_toBottomOf="parent"
52
        app:layout_constraintRight_toRightOf="parent"
4 gabriel 53
        app:layout_constraintStart_toEndOf="@+id/fragment_quiz_single_answer_item_constraint"
54
        app:layout_constraintTop_toTopOf="parent"
55
        app:layout_constraintVertical_bias="0.0" />
1 efrain 56
 
57
 
58
</androidx.constraintlayout.widget.ConstraintLayout>