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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp">
<TextView
style="@style/textview_quiz_title1"
android:id="@+id/justifytext_quiz_multiple_answer_textview_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_question"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<com.codesgood.views.JustifiedTextView
style="@style/textview_quiz_title1"
android:id="@+id/justifytext_quiz_multiple_answer"
android:textStyle=""
android:textAlignment="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_multiple_answer_textview_title"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list_quiz_multiple_answer"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_multiple_answer"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>