33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="info.nightscout.androidaps.activities.fragments.TreatmentsTempTargetFragment">
|
|
|
|
<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
|
|
android:id="@+id/recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentTop="true" />
|
|
|
|
</RelativeLayout>
|