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_marginStart="5dp"
8
    android:layout_marginLeft="5dp"
9
    android:layout_marginTop="10dp"
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"
17
 
18
        android:gravity="center"
19
        android:padding="6dp"
20
        app:layout_constraintBottom_toBottomOf="parent"
21
        app:layout_constraintEnd_toStartOf="@+id/fragment_quiz_single_answer_item_radio"
22
        app:layout_constraintLeft_toLeftOf="parent"
23
        app:layout_constraintTop_toTopOf="parent"
24
        app:layout_constraintWidth_percent="0.9">
25
 
26
 
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"
33
            android:textSize="16sp"
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
 
41
    </androidx.constraintlayout.widget.ConstraintLayout>
42
 
43
    <RadioButton
44
        android:id="@+id/fragment_quiz_single_answer_item_radio"
45
        android:layout_width="48dp"
46
        android:layout_height="48dp"
47
        android:layout_marginStart="4dp"
48
        android:layout_marginTop="15dp"
49
        android:padding="5dp"
50
        android:theme="@style/CheckBox"
51
        app:layout_constraintBottom_toBottomOf="parent"
52
        app:layout_constraintRight_toRightOf="parent"
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" />
56
 
57
 
58
</androidx.constraintlayout.widget.ConstraintLayout>