Línea 1... |
Línea 1... |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
5 |
android:layout_width="match_parent"
|
5 |
android:layout_width="match_parent"
|
6 |
android:layout_height="wrap_content"
|
6 |
android:layout_height="wrap_content"
|
7 |
android:layout_marginTop="2dp"
|
- |
|
8 |
android:layout_marginBottom="2dp"
|
7 |
android:layout_marginStart="5dp"
|
9 |
android:layout_marginLeft="2dp"
|
8 |
android:layout_marginLeft="5dp"
|
10 |
android:layout_marginRight="2dp"
|
9 |
android:layout_marginTop="10dp"
|
11 |
android:padding="0dp">
|
10 |
android:padding="0dp">
|
Línea 12... |
Línea 11... |
12 |
|
11 |
|
13 |
<androidx.constraintlayout.widget.ConstraintLayout
|
12 |
<androidx.constraintlayout.widget.ConstraintLayout
|
14 |
android:id="@+id/fragment_quiz_single_answer_item_constraint"
|
13 |
android:id="@+id/fragment_quiz_single_answer_item_constraint"
|
15 |
android:layout_width="0dp"
|
14 |
android:layout_width="0dp"
|
16 |
android:layout_height="wrap_content"
|
15 |
android:layout_height="wrap_content"
|
- |
|
16 |
android:background="@drawable/cardview_background_topic"
|
- |
|
17 |
|
17 |
android:background="@drawable/cardview_background_topic"
|
18 |
android:gravity="center"
|
18 |
android:padding="5dp"
|
19 |
android:padding="6dp"
|
- |
|
20 |
app:layout_constraintBottom_toBottomOf="parent"
|
19 |
app:layout_constraintBottom_toBottomOf="parent"
|
21 |
app:layout_constraintEnd_toStartOf="@+id/fragment_quiz_single_answer_item_radio"
|
20 |
app:layout_constraintLeft_toLeftOf="parent"
|
22 |
app:layout_constraintLeft_toLeftOf="parent"
|
21 |
app:layout_constraintTop_toTopOf="parent"
|
- |
|
22 |
|
23 |
app:layout_constraintTop_toTopOf="parent"
|
Línea 23... |
Línea 24... |
23 |
app:layout_constraintWidth_percent="0.8">
|
24 |
app:layout_constraintWidth_percent="0.9">
|
24 |
|
25 |
|
25 |
<com.codesgood.views.JustifiedTextView
|
26 |
<com.codesgood.views.JustifiedTextView
|
26 |
android:id="@+id/fragment_quiz_single_answer_item_justifytextview"
|
- |
|
27 |
style="@style/textview_quiz_title2"
|
27 |
android:id="@+id/fragment_quiz_single_answer_item_justifytextview"
|
28 |
android:textAlignment="gravity"
|
28 |
style="@style/textview_quiz_title2"
|
29 |
android:layout_width="match_parent"
|
- |
|
30 |
android:layout_height="wrap_content"
|
29 |
android:layout_width="match_parent"
|
31 |
app:layout_constraintTop_toTopOf="parent"
|
30 |
android:layout_height="wrap_content"
|
32 |
app:layout_constraintBottom_toBottomOf="parent"
|
31 |
app:layout_constraintBottom_toBottomOf="parent"
|
- |
|
32 |
app:layout_constraintLeft_toLeftOf="parent"
|
- |
|
33 |
app:layout_constraintRight_toRightOf="parent"
|
- |
|
34 |
app:layout_constraintTop_toTopOf="parent"
|
33 |
app:layout_constraintLeft_toLeftOf="parent"
|
35 |
tools:visibility="gone" />
|
- |
|
36 |
|
- |
|
37 |
<TextView
|
- |
|
38 |
android:id="@+id/textView3"
|
- |
|
39 |
android:layout_width="0dp"
|
- |
|
40 |
android:layout_height="wrap_content"
|
- |
|
41 |
android:layout_marginTop="4dp"
|
- |
|
42 |
android:text="TextView"
|
- |
|
43 |
android:textAlignment="textStart"
|
- |
|
44 |
android:textColor="@color/black"
|
- |
|
45 |
android:textSize="16dp"
|
- |
|
46 |
android:textStyle="bold"
|
- |
|
47 |
app:layout_constraintEnd_toEndOf="parent"
|
- |
|
48 |
app:layout_constraintHorizontal_bias="0.0"
|
- |
|
49 |
app:layout_constraintRight_toRightOf="parent"
|
- |
|
50 |
app:layout_constraintStart_toStartOf="parent"
|
Línea 34... |
Línea 51... |
34 |
app:layout_constraintRight_toRightOf="parent"
|
51 |
app:layout_constraintTop_toTopOf="parent"
|
Línea 35... |
Línea 52... |
35 |
/>
|
52 |
tools:visibility="visible" />
|
36 |
|
53 |
|
37 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
54 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
38 |
|
55 |
|
- |
|
56 |
<RadioButton
|
- |
|
57 |
android:id="@+id/fragment_quiz_single_answer_item_radio"
|
39 |
<RadioButton
|
58 |
android:layout_width="48dp"
|
40 |
android:id="@+id/fragment_quiz_single_answer_item_radio"
|
59 |
android:layout_height="48dp"
|
41 |
android:layout_width="wrap_content"
|
- |
|
42 |
android:layout_height="wrap_content"
|
60 |
android:layout_marginStart="4dp"
|
43 |
android:padding="5dp"
|
- |
|
44 |
android:theme="@style/CheckBox"
|
61 |
android:layout_marginTop="15dp"
|
- |
|
62 |
android:padding="5dp"
|
- |
|
63 |
android:theme="@style/CheckBox"
|
45 |
app:layout_constraintTop_toTopOf="parent"
|
64 |
app:layout_constraintBottom_toBottomOf="parent"
|
Línea 46... |
Línea 65... |
46 |
app:layout_constraintBottom_toBottomOf="parent"
|
65 |
app:layout_constraintRight_toRightOf="parent"
|
47 |
app:layout_constraintLeft_toRightOf="@id/fragment_quiz_single_answer_item_constraint"
|
66 |
app:layout_constraintStart_toEndOf="@+id/fragment_quiz_single_answer_item_constraint"
|