2021-02-02 21:38:22 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-04-05 22:41:28 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-05-23 22:59:06 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-02-02 21:38:22 +01:00
|
|
|
android:orientation="vertical"
|
2021-05-23 21:38:30 +02:00
|
|
|
tools:context="info.nightscout.androidaps.activities.fragments.TreatmentsExtendedBolusesFragment">
|
2017-05-23 22:59:06 +02:00
|
|
|
|
2021-04-05 22:41:28 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/show_invalidated"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:checked="false"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
tools:ignore="RtlSymmetry" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
app:srcCompat="@drawable/ic_visibility"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/show_removed" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2021-02-02 21:38:22 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerview"
|
2017-05-23 22:59:06 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-02-03 22:40:13 +01:00
|
|
|
android:layout_height="match_parent" />
|
2017-05-23 22:59:06 +02:00
|
|
|
|
2021-02-02 21:38:22 +01:00
|
|
|
</LinearLayout>
|