<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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="100dp"
android:minHeight="60dp"
android:maxHeight="150dp">
<RelativeLayout
android:id="@+id/task_item_ball_p"
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true">
<LinearLayout
android:layout_width="4dp"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:orientation="vertical"
android:weightSum="2">
<View
android:id="@+id/task_item_line_up"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#DBDBDB" />
<View
android:id="@+id/task_item_line_down"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FB4645" />
</LinearLayout>
<View
android:id="@+id/task_item_ball"
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_centerInParent="true"
android:background="@drawable/task_item_ball_red" />
</RelativeLayout>
<TextView
android:id="@+id/task_item_content"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="4dp"
android:text="连续打卡7天"
android:textColor="@android:color/black"
android:textSize="14sp"
android:layout_toRightOf="@+id/task_item_ball_p"
android:layout_centerVertical="true"
android:maxWidth="120dp"
android:gravity="center_vertical|left"/>
<TextView
android:id="@+id/task_item_money"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="奖励10刀"
android:textSize="14sp"
android:textColor="#333333"
android:layout_marginRight="10dp"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/task_item_btn"/>
<Button
android:id="@+id/task_item_btn"
android:layout_width="70dp"
android:layout_height="30dp"
android:background="@drawable/task_item_btn_red"
android:text="去领奖"
android:textColor="@color/app_color_white"
android:textSize="14sp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="3dp"/>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/app_color_8cd"
android:layout_toRightOf="@+id/task_item_ball_p"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
|