2022-07-26 17:45:20 +08:00
|
|
|
<?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"
|
2022-07-27 11:21:34 +08:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="70dp"
|
2022-07-26 17:45:20 +08:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Task 1"
|
|
|
|
android:textColor="#ffffffff"
|
|
|
|
android:textSize="8sp"
|
2022-07-27 20:44:55 +08:00
|
|
|
android:layout_marginBottom="3dp"
|
2022-07-26 17:45:20 +08:00
|
|
|
/>
|
|
|
|
|
2022-07-27 20:44:55 +08:00
|
|
|
<com.yunbao.live.utils.CenterTextView
|
2022-07-26 17:45:20 +08:00
|
|
|
android:id="@+id/task_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Give a
|
|
|
|
free gift"
|
|
|
|
android:textColor="#fffff69f"
|
|
|
|
android:textSize="10sp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Incomplete"
|
|
|
|
android:textColor="#ffffffff"
|
|
|
|
android:textSize="8sp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/indicator1"
|
|
|
|
android:layout_width="4dp"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:layout_marginRight="7dp"
|
|
|
|
android:src="@drawable/bg_home_indicator_selected"/>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/indicator2"
|
|
|
|
android:layout_width="4dp"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:layout_marginRight="7dp"
|
|
|
|
android:src="@drawable/bg_home_indicator_unselected"/>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/indicator3"
|
|
|
|
android:layout_width="4dp"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:src="@drawable/bg_home_indicator_unselected"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|