2022-04-07 12:48:17 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
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
|
|
|
|
2022-04-07 12:48:17 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_records_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:paddingVertical="50dp"
|
|
|
|
android:text="@string/no_records_available"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<info.nightscout.androidaps.extensions.EmptyRecyclerView
|
2021-02-09 17:57:28 +01:00
|
|
|
android:id="@+id/recyclerview"
|
|
|
|
android:layout_width="match_parent"
|
2022-04-07 12:48:17 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentTop="true" />
|
2021-02-09 17:57:28 +01:00
|
|
|
|
2022-04-07 12:48:17 +02:00
|
|
|
</RelativeLayout>
|