2016-07-27 17:49:56 +02:00
|
|
|
<?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/danar_history_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:id="@+id/tempbasals_datelinearlayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:baselineAligned="true"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_time"
|
|
|
|
android:layout_width="120dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:text="27.06.2016 18:00" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_value"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:text="0.25"
|
|
|
|
android:gravity="right" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_bolustype"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:text="E"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_stringvalue"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:text="XXXXXXX"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_duration"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:text="30"
|
|
|
|
android:gravity="right" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_dailybasal"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:gravity="right" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_dailybolus"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:gravity="right" />
|
|
|
|
|
2016-11-08 06:08:12 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_dailytotal"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:gravity="right"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2016-07-27 17:49:56 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/danar_history_alarm"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="5dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|