2021-02-09 17:57:28 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-25 23:47:03 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-02-09 17:57:28 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2021-05-23 21:38:30 +02:00
|
|
|
tools:context="info.nightscout.androidaps.activities.fragments.TreatmentsUserEntryFragment">
|
2021-02-09 17:57:28 +01:00
|
|
|
|
2021-03-25 23:47:03 +01:00
|
|
|
<LinearLayout
|
2021-03-06 16:14:44 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-03-25 23:47:03 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<info.nightscout.androidaps.utils.ui.SingleClickButton
|
|
|
|
android:id="@+id/ue_export_to_xml"
|
|
|
|
style="?android:attr/buttonStyle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawableStart="@drawable/ic_header_export"
|
|
|
|
android:text="@string/ue_export_to_csv" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/show_loop"
|
|
|
|
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
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/show_calculation"
|
|
|
|
app:srcCompat="@drawable/ic_loop_closed_white" />
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2021-03-06 16:14:44 +01:00
|
|
|
|
2021-02-09 17:57:28 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|