| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/bg_list_item"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="15dp"
- android:layout_marginTop="15dp" >
- <TextView
- android:id="@+id/tv_objectname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_marginLeft="20dp"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_sort"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginRight="20dp"
- android:text="1"
- android:textColor="@color/black" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toLeftOf="@+id/tv_sort"
- android:text="排行:"
- android:textColor="@color/black" />
- <LinearLayout
- android:id="@+id/l1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/tv_objectname"
- android:layout_marginTop="15dp"
- android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1.5" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:text="客户数量:" />
- <TextView
- android:id="@+id/tv_object_customer_count"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="单数:" />
- <TextView
- android:id="@+id/tv_object_count"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="" />
- </LinearLayout>
- <RelativeLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1.5" >
- <TextView
- android:id="@+id/tv_proportion"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginRight="20dp"
- >
- </TextView>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/tv_proportion"
- android:layout_toLeftOf="@+id/tv_proportion"
- android:text="比重:" />
- </RelativeLayout>
- </LinearLayout>
- <TextView
- android:id="@+id/tv_amount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_below="@+id/l1"
- android:layout_marginLeft="20dp"
- android:layout_marginTop="15dp"
- >
- </TextView>
- <TextView
- android:id="@+id/tv_average_value"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/l1"
- android:layout_marginRight="20dp"
- android:layout_marginTop="15dp"
- >
- </TextView>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/tv_average_value"
- android:layout_toLeftOf="@+id/tv_average_value"
- android:text="客户平均值:" />
- </RelativeLayout>
- <View style="@style/thin_fill_line" />
- </LinearLayout>
|