|
|
@@ -1,13 +1,97 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
android:background="#4B4B57"
|
|
|
tools:context="com.xzjmyk.pm.activity.ui.erp.activity.crm.CustomerListActivity">
|
|
|
|
|
|
- <LinearLayout style="@style/LinearLayout_horizontal">
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ style="@style/LinearLayout_horizontal">
|
|
|
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_head"
|
|
|
+ android:layout_width="40dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:background="@drawable/iconfont_bokexinwen" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/iv_head"
|
|
|
+ style="@style/LinearLayout_vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:text="chensir"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ style="@style/LinearLayout_horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:text="深圳总部"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
+
|
|
|
+ <View style="@style/app_line_v_1dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:text="总经理"
|
|
|
+ android:layout_marginLeft="15dp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ style="@style/TextView_Basic"
|
|
|
+ android:text="切换" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:weightSum="5"
|
|
|
+ style="@style/crm_ll_card">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:text="10\n未成交"
|
|
|
+ android:gravity="center"
|
|
|
+ android:padding="10dp"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
+
|
|
|
+ <View style="@style/app_line_v_1dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:gravity="center"
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:text="10\n已成交"
|
|
|
+ android:padding="10dp"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
+
|
|
|
+ <View style="@style/app_line_v_1dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:gravity="center"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="10\n全部客户"
|
|
|
+ android:padding="10dp"
|
|
|
+ style="@style/TextView_Basic" />
|
|
|
</LinearLayout>
|
|
|
|
|
|
-</RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ style="@style/crm_ll_card">
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+</LinearLayout>
|