Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:padding="0dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/fragment_quiz_multiple_answer_item_constraint"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@drawable/cardview_background_topic"
android:padding="5dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.8">
<com.codesgood.views.JustifiedTextView
android:id="@+id/fragment_quiz_multiple_answer_item_justifytextview"
style="@style/textview_quiz_title2"
android:textAlignment="gravity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<CheckBox
android:id="@+id/fragment_quiz_multiple_answer_item_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:theme="@style/CheckBox"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/fragment_quiz_multiple_answer_item_constraint"
app:layout_constraintRight_toRightOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>