78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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="wrap_content"
 | |
| 	android:orientation="vertical"
 | |
| 	android:padding="12dp"
 | |
| 	android:background="@drawable/item_bg_simple"
 | |
| 	android:layout_marginBottom="8dp">
 | |
| 
 | |
| 	<View
 | |
| 		android:id="@+id/v_bingo_dot"
 | |
| 		android:layout_width="12dp"
 | |
| 		android:layout_height="12dp"
 | |
| 		android:layout_alignParentRight="true"
 | |
| 		android:layout_alignParentTop="true"
 | |
| 		android:layout_marginRight="2dp"
 | |
| 		android:layout_marginTop="2dp"
 | |
| 		android:background="@drawable/bg_bingo_dot"
 | |
| 		android:visibility="gone"/>
 | |
| 
 | |
| 	<TextView
 | |
| 		android:id="@+id/tv_simple_task_desc"
 | |
| 		android:layout_width="wrap_content"
 | |
| 		android:layout_height="wrap_content"
 | |
| 		android:textSize="16sp"
 | |
| 		android:textColor="#333333"
 | |
| 		android:text="任务:无描述"/>
 | |
| 
 | |
| 	<TextView
 | |
| 		android:id="@+id/tv_simple_distance_cond"
 | |
| 		android:layout_width="wrap_content"
 | |
| 		android:layout_height="wrap_content"
 | |
| 		android:textSize="14sp"
 | |
| 		android:textColor="#666666"
 | |
| 		android:layout_marginTop="6dp"
 | |
| 		android:layout_below="@id/tv_simple_task_desc"
 | |
| 		android:text="条件:距离 > 0 米"/>
 | |
| 
 | |
| 	<LinearLayout
 | |
| 		android:orientation="horizontal"
 | |
| 		android:layout_marginTop="6dp"
 | |
| 		android:layout_width="wrap_content"
 | |
| 		android:layout_height="wrap_content"
 | |
| 		android:layout_below="@id/tv_simple_distance_cond"
 | |
| 		android:id="@+id/ll_starttime"
 | |
| 		android:gravity="center_vertical">
 | |
| 
 | |
| 		<TextView
 | |
| 			android:layout_width="wrap_content"
 | |
| 			android:layout_height="wrap_content"
 | |
| 			android:textSize="14sp"
 | |
| 			android:textColor="#666666"
 | |
| 			android:text="开始时间:"/>
 | |
| 
 | |
| 		<TextView
 | |
| 			android:id="@+id/tv_starttime"
 | |
| 			android:layout_width="wrap_content"
 | |
| 			android:layout_height="wrap_content"
 | |
| 			android:textSize="14sp"
 | |
| 			android:textColor="#666666"
 | |
| 			android:text=""/>
 | |
| 
 | |
| 	</LinearLayout>
 | |
| 
 | |
| 	<TextView
 | |
| 		android:id="@+id/tv_simple_is_enable"
 | |
| 		android:layout_width="wrap_content"
 | |
| 		android:layout_height="wrap_content"
 | |
| 		android:textSize="14sp"
 | |
| 		android:textColor="#2E8B57"
 | |
| 		android:layout_marginTop="4dp"
 | |
| 		android:layout_below="@id/ll_starttime"
 | |
| 		android:text="状态:已启用"/>
 | |
| 
 | |
| </RelativeLayout>
 | |
| 
 | 
