1 |
efrain |
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_marginTop="2dp"
|
|
|
8 |
android:layout_marginBottom="2dp"
|
|
|
9 |
android:layout_marginLeft="2dp"
|
|
|
10 |
android:layout_marginRight="2dp"
|
|
|
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 |
|
|
|
25 |
<com.codesgood.views.JustifiedTextView
|
|
|
26 |
android:id="@+id/fragment_quiz_multiple_answer_item_justifytextview"
|
|
|
27 |
style="@style/textview_quiz_title2"
|
|
|
28 |
android:textAlignment="gravity"
|
|
|
29 |
android:layout_width="match_parent"
|
|
|
30 |
android:layout_height="wrap_content"
|
|
|
31 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
32 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
33 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
34 |
app:layout_constraintRight_toRightOf="parent" />
|
|
|
35 |
|
|
|
36 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
37 |
|
|
|
38 |
<CheckBox
|
|
|
39 |
android:id="@+id/fragment_quiz_multiple_answer_item_checkbox"
|
|
|
40 |
android:layout_width="wrap_content"
|
|
|
41 |
android:layout_height="wrap_content"
|
|
|
42 |
android:padding="5dp"
|
|
|
43 |
android:theme="@style/CheckBox"
|
|
|
44 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
45 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
46 |
app:layout_constraintLeft_toRightOf="@id/fragment_quiz_multiple_answer_item_constraint"
|
|
|
47 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
48 |
/>
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
</androidx.constraintlayout.widget.ConstraintLayout>
|