76 lines
2.4 KiB
XML
76 lines
2.4 KiB
XML
<?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="67dp"
|
|
android:layout_height="90dp"
|
|
android:background="@mipmap/live_mission_box"
|
|
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"
|
|
/>
|
|
|
|
<TextView
|
|
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>
|