<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/gray5"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:text="今天"
|
android:textColor="@color/black_title"
|
android:textSize="@dimen/text_size_18"
|
android:textStyle="bold"
|
android:layout_margin="@dimen/margin_common"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
<LinearLayout
|
android:padding="@dimen/margin_common"
|
android:id="@+id/ll_lines"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center_vertical"
|
android:background="@color/white"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:src="@mipmap/ic_scales"
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content" />
|
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="wrap_content">
|
<TextView
|
android:id="@+id/tv_name"
|
android:text="高血压-1级(轻度)"
|
android:textSize="@dimen/text_size_16"
|
android:textColor="@color/black_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
<TextView
|
android:layout_marginTop="@dimen/margin_common"
|
android:id="@+id/tv_filled"
|
android:text="今日待填写"
|
android:textSize="@dimen/text_size_16"
|
android:textColor="@color/pink"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
<TextView
|
android:layout_marginTop="@dimen/margin_common"
|
android:id="@+id/tv_filled_un"
|
android:text="今日待填写"
|
android:drawableEnd="@mipmap/ic_unremind"
|
android:drawablePadding="@dimen/margin_common_half"
|
android:textSize="@dimen/text_size_16"
|
|
android:textColor="@color/text_gray"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
<TextView
|
android:layout_marginTop="@dimen/margin_common"
|
android:id="@+id/tv_unfilled"
|
android:text="今日已填写"
|
android:textSize="@dimen/text_size_16"
|
android:textColor="@color/colorGreen"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
<TextView
|
android:layout_marginTop="@dimen/margin_common"
|
android:id="@+id/tv_pause"
|
android:text="已暂停填写"
|
android:drawableEnd="@mipmap/ic_un"
|
android:drawablePadding="@dimen/margin_common_half"
|
android:textSize="@dimen/text_size_16"
|
android:textColor="@color/text_gray"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
<TextView
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_marginLeft="@dimen/margin_common"
|
android:textSize="@dimen/text_size_18"
|
android:text="查看"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
</LinearLayout>
|