152 lines
6.1 KiB
XML
152 lines
6.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/tempbasals_cardview"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
card_view:cardBackgroundColor="@color/cardColorBackground"
|
||
|
card_view:cardCornerRadius="6dp"
|
||
|
card_view:cardUseCompatPadding="true"
|
||
|
card_view:contentPadding="6dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:baselineAligned="true"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_date"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:text="1.1.2000 18:00"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
android:textColor="@color/cardObjectiveText" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_absolute"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:text="0.25 U"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
android:textColor="@color/cardObjectiveText" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_percent"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:text="150%"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
android:textColor="@color/cardObjectiveText" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_duration"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:text="30 min"
|
||
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
android:textColor="@color/cardObjectiveText" />
|
||
|
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_realduration_label"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="top"
|
||
|
android:paddingRight="5dp"
|
||
|
android:text="@string/tempbasals_realduration_label_string"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textStyle="bold"
|
||
|
android:paddingLeft="10dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_realduration"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="10 min"
|
||
|
android:paddingRight="10dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_netratio_label"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="top"
|
||
|
android:paddingRight="5dp"
|
||
|
android:text="@string/tempbasals_netratio_label_string"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_netratio"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="0.05 U/h"
|
||
|
android:paddingRight="10dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_netinsulin_label"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="top"
|
||
|
android:paddingRight="5dp"
|
||
|
android:text="@string/tempbasals_netinsulin_label_string"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_netinsulin"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="0.05 U"
|
||
|
android:paddingRight="10dp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal">
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_iob_label"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="top"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp"
|
||
|
android:text="@string/tempbasals_iob_label_string"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tempbasals_iob"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_marginRight="30dp"
|
||
|
android:text="0.12 U" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</android.support.v7.widget.CardView>
|