Use FragmentContainerView for displaying FallbackFragment

This commit is contained in:
Sebastian Kürten
2021-06-14 17:07:34 +02:00
committed by Torsten Grote
parent aecd204efe
commit 9192ee32cf
4 changed files with 12 additions and 22 deletions

View File

@@ -65,13 +65,15 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/errorMessageDetail" />
<FrameLayout
android:id="@+id/fallbackPlaceholder"
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fallbackFragment"
android:name="org.briarproject.briar.android.hotspot.FallbackFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/feedbackButton" />
app:layout_constraintTop_toBottomOf="@+id/feedbackButton"
tools:layout="@layout/fragment_hotspot_save_apk" />
</androidx.constraintlayout.widget.ConstraintLayout>