<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="80dp"
|
android:layout_marginStart="26dp"
|
android:layout_marginEnd="26dp"
|
android:id="@+id/rl_main"
|
android:background="@color/B8B8"
|
android:elevation="6dp"
|
android:layout_marginTop="24dp"
|
>
|
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="14dp"
|
android:text="2020.3.31"
|
android:textColor="#ffffffff"
|
android:textSize="40sp" />
|
|
<TextView
|
android:id="@+id/tv_statue"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="14dp"
|
android:text="已完成"
|
android:textColor="#ffffa72d"
|
android:textSize="40sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:alpha="0.1"/>
|
|
</RelativeLayout>
|