Skip to content

Commit

Permalink
Fix boundaries of conversation banners in landscape.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Feb 11, 2021
1 parent 5e12235 commit b58b0fd
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions app/src/main/res/layout/conversation_activity.xml
Expand Up @@ -198,27 +198,33 @@

<ViewStub
android:id="@+id/review_banner_stub"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inflatedId="@+id/review_banner"
android:layout="@layout/review_banner_view"
app:layout_constraintTop_toBottomOf="@id/toolbar"/>
app:layout_constraintTop_toBottomOf="@id/toolbar"
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"/>

<ViewStub
android:id="@+id/unverified_banner_stub"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inflatedId="@+id/unverified_banner"
android:layout="@layout/conversation_activity_unverified_banner_stub"
app:layout_constraintTop_toBottomOf="@id/review_banner_stub"/>
app:layout_constraintTop_toBottomOf="@id/review_banner_stub"
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"/>

<ViewStub
android:id="@+id/reminder_stub"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inflatedId="@+id/reminder"
android:layout="@layout/conversation_activity_reminderview_stub"
app:layout_constraintTop_toBottomOf="@id/unverified_banner_stub"/>
app:layout_constraintTop_toBottomOf="@id/unverified_banner_stub"
app:layout_constraintStart_toStartOf="@id/parent_start_guideline"
app:layout_constraintEnd_toEndOf="@id/parent_end_guideline"/>

<View
android:id="@+id/conversation_toolbar_shadow"
Expand Down

0 comments on commit b58b0fd

Please sign in to comment.