Skip to content
Snippets Groups Projects
Commit 3bc5c536 authored by Matthias Urhahn's avatar Matthias Urhahn
Browse files

Add explanation text.

parent b21a5195
No related branches found
No related tags found
No related merge requests found
...@@ -34,10 +34,11 @@ ...@@ -34,10 +34,11 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"> android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout <LinearLayout
android:id="@+id/environment_container" android:id="@+id/environment_container"
style="@style/card" style="@style/card"
android:layout_width="match_parent" android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView <TextView
...@@ -45,22 +46,22 @@ ...@@ -45,22 +46,22 @@
style="@style/headline6" style="@style/headline6"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Fake exposure windows" android:text="Fake exposure windows" />
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" <TextView
app:layout_constraintTop_toTopOf="parent" /> android:layout_width="match_parent"
style="@style/TextAppearance.AppCompat.Caption"
android:layout_marginTop="@dimen/spacing_tiny"
android:text="Takes effect the next time `ExposureNotificationClient.exposureWindows` is called, i.e. on risk level calculation."
android:layout_height="wrap_content" />
<RadioGroup <RadioGroup
android:id="@+id/fake_windows_toggle_group" android:id="@+id/fake_windows_toggle_group"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/spacing_tiny" android:layout_marginTop="@dimen/spacing_tiny"
android:orientation="vertical" android:orientation="vertical" />
app:layout_constraintBottom_toBottomOf="parent" </LinearLayout>
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/fake_windows_title" />
</androidx.constraintlayout.widget.ConstraintLayout>
<FrameLayout <FrameLayout
android:id="@+id/test_risk_card" android:id="@+id/test_risk_card"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment