<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical" android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="12dp"
|
android:foreground="?android:attr/selectableItemBackground">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/TV_No"
|
android:layout_width="0dp"
|
android:layout_height="20dp"
|
android:layout_weight="1"
|
android:hint="1."
|
android:textColor="@color/black" />
|
|
<ImageView
|
android:id="@+id/iv_top_task"
|
android:layout_width="0dp"
|
android:layout_height="20dp"
|
android:layout_gravity="center"
|
android:layout_weight="1"
|
android:src="@drawable/icon_inspection_run" />
|
|
<cn.flightfeather.thirdappmodule.view.ScrollTextView
|
android:id="@+id/tv_top_task"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="@dimen/dimen2"
|
android:layout_weight="7"
|
android:ellipsize="marquee"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:hint="顶层任务"
|
android:singleLine="true"
|
android:textColor="@color/black"
|
android:textSize="@dimen/textSize_16" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<TextView
|
android:id="@+id/TV_top_task_progress"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:hint="100%"/>
|
<ProgressBar
|
android:id="@+id/PB_top_task_progress"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="8"
|
android:layout_gravity="center"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:progressDrawable ="@drawable/progressbar1"/>
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="@dimen/dimen2">
|
<TextView
|
android:id="@+id/tv_my_progress"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:hint="10%"/>
|
<ProgressBar
|
android:id="@+id/PB_my_progress"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="8"
|
android:layout_gravity="center"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:progressDrawable ="@drawable/progressbar2"/>
|
</LinearLayout>
|
|
</LinearLayout>
|