Skip to content

Commit

Permalink
Fix Fill-in-the-blanks arrangement relative to the hints
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderZhu committed Nov 6, 2023
1 parent 7bad798 commit 3b0e31c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<include layout="@layout/view_divider_vertical" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@
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:layout_height="wrap_content"
android:layout_marginTop="@dimen/step_quiz_content_padding_top"
android:layout_marginBottom="@dimen/step_quiz_content_padding_bottom"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/stepQuizHints"
app:layout_constraintBottom_toTopOf="@id/stepQuizStatistics">
app:layout_constraintBottom_toTopOf="@id/stepQuizStatistics"
app:layout_constraintVertical_bias="0">

<LinearLayout
android:id="@+id/stepQuizFillBlanksContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">

<include layout="@layout/view_divider_vertical" />
Expand Down

0 comments on commit 3b0e31c

Please sign in to comment.