d
10
app/src/main/res/drawable/shape_deal.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient android:type="linear"
|
||||
android:useLevel="true"
|
||||
android:startColor="#ff2680eb"
|
||||
android:endColor="#ff70b1ff"
|
||||
android:angle="135" />
|
||||
<corners android:topLeftRadius="0dp" android:topRightRadius="0dp" android:bottomLeftRadius="15dp" android:bottomRightRadius="0dp" />
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/share_tv_cus.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<shape android:shape="rectangle"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<stroke android:width="2dp" android:color="#ff333333" />
|
||||
<corners android:radius="16dp" />
|
||||
</shape>
|
||||
119
app/src/main/res/layout/cuslist_item.xml
Normal file
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
|
||||
<RelativeLayout android:layout_width="match_parent"
|
||||
android:layout_height="99dp"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_cus_01"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="24dp">
|
||||
<TextView
|
||||
android:id="@+id/tv_cus_01"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="12dp"
|
||||
android:layout_marginLeft="10.5dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@mipmap/icon_cus_new"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_toRightOf="@+id/tv_cus_01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="17dp"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:text="多喜爱家纺磨毛小猪佩奇...(云拼团)"
|
||||
android:layout_centerVertical="true"
|
||||
android:textColor="#ffababab"
|
||||
android:textSize="13sp"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_below="@+id/rl_cus_01"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/yichengjhiao_rv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="75dp"
|
||||
android:background="@color/colorWhite">
|
||||
|
||||
|
||||
|
||||
<com.example.administrator.seven.widget.CircleImageView
|
||||
android:id="@+id/iv_dea_avatar"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="30dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:src="@mipmap/icon_default_head"
|
||||
app:border_color="#70ffffff" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_name"
|
||||
android:layout_width="59dp"
|
||||
android:layout_height="21dp"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="19.5dp"
|
||||
android:layout_toRightOf="@+id/iv_dea_avatar"
|
||||
android:text="欧阳子文"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="15sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_phone"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginTop="19.5dp"
|
||||
android:layout_toRightOf="@+id/tv_dea_name"
|
||||
android:text="18971614151"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="12sp"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ima_dea_watch"
|
||||
android:layout_width="16.5dp"
|
||||
android:layout_toRightOf="@+id/iv_dea_avatar"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_below="@+id/tv_dea_name"
|
||||
android:background="@mipmap/ic_launcher"
|
||||
android:layout_height="16.5dp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_watch"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_toRightOf="@+id/ima_dea_watch"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_below="@+id/tv_dea_name"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="12sp"
|
||||
android:text="--"
|
||||
/>
|
||||
|
||||
|
||||
<TextView
|
||||
android:layout_width="43dp"
|
||||
android:layout_height="25dp"
|
||||
android:text="操作"
|
||||
android:gravity="center"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="22dp"
|
||||
android:textColor="#ff333333"
|
||||
android:background="@drawable/share_tv_cus"
|
||||
android:textSize="11sp"
|
||||
/>
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dimen_2dp"
|
||||
android:background="#F5F5F5"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
83
app/src/main/res/layout/dealist_item.xml
Normal file
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/yichengjhiao_rv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="75dp"
|
||||
android:background="@color/colorWhite">
|
||||
|
||||
<TextView
|
||||
android:layout_width="59.5dp"
|
||||
android:layout_height="21.5dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:background="@drawable/shape_deal"
|
||||
android:gravity="center"
|
||||
android:text="已成交1单"
|
||||
android:textColor="#ffffffff"
|
||||
android:textSize="10sp" />
|
||||
|
||||
|
||||
<com.example.administrator.seven.widget.CircleImageView
|
||||
android:id="@+id/iv_dea_avatar"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="30dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:src="@mipmap/icon_default_head"
|
||||
app:border_color="#70ffffff" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_name"
|
||||
android:layout_width="59dp"
|
||||
android:layout_height="21dp"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="19.5dp"
|
||||
android:layout_toRightOf="@+id/iv_dea_avatar"
|
||||
android:text="欧阳子文"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="15sp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_phone"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_marginTop="19.5dp"
|
||||
android:layout_toRightOf="@+id/tv_dea_name"
|
||||
android:text="18971614151"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="12sp"
|
||||
/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ima_dea_watch"
|
||||
android:layout_width="16.5dp"
|
||||
android:layout_toRightOf="@+id/iv_dea_avatar"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_below="@+id/tv_dea_name"
|
||||
android:background="@mipmap/ic_launcher"
|
||||
android:layout_height="16.5dp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dea_watch"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_toRightOf="@+id/ima_dea_watch"
|
||||
android:layout_marginLeft="13.5dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_below="@+id/tv_dea_name"
|
||||
android:textColor="#ff333333"
|
||||
android:textSize="12sp"
|
||||
android:text="--"
|
||||
/>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/dimen_2dp"
|
||||
android:background="#F5F5F5"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
|
||||
57
app/src/main/res/layout/disliat_item.xml
Normal file
@@ -0,0 +1,57 @@
|
||||
<?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="74dp"
|
||||
android:background="#F5F5F5">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="74dp"
|
||||
android:background="@color/colorWhite"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginRight="12dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/xike_tv_01"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="left"
|
||||
android:layout_marginLeft="13dp"
|
||||
android:layout_marginTop="18dp"
|
||||
android:text="待成交客户成交"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/marking_13_sp" />
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/xike_tv_02"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/xike_tv_01"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginLeft="13dp"
|
||||
android:text="2020/07/07 11:23:56"
|
||||
android:textColor="@color/color_838282"
|
||||
android:textSize="@dimen/marking_13_sp" />
|
||||
<TextView
|
||||
android:id="@+id/xike_tv_03"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="27dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="+3"
|
||||
android:layout_marginRight="13dp"
|
||||
android:textColor="#ff3a3a3a"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0.5dp"
|
||||
android:layout_below="@+id/xike_tv_02"
|
||||
android:layout_marginTop="7dp"
|
||||
android:background="@color/color_bfbfbf" />
|
||||
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
@@ -37,9 +37,8 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:text="追踪客户"
|
||||
|
||||
android:textColor="@color/colorWhite"
|
||||
android:text="客户"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="18sp" />
|
||||
<RelativeLayout
|
||||
android:id="@+id/enter_shop_shai"
|
||||
@@ -79,6 +78,7 @@
|
||||
<ImageView
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:background="@mipmap/marking_sousuo"
|
||||
/>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
@@ -88,11 +88,6 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:orientation="vertical">
|
||||
<com.google.android.material.tabs.TabLayout
|
||||
android:id="@+id/main_tab_layout"
|
||||
android:layout_width="match_parent"
|
||||
@@ -105,7 +100,7 @@
|
||||
app:tabMode="fixed"
|
||||
app:tabSelectedTextColor="@color/black"
|
||||
app:tabTextColor="@color/black" />
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.viewpager.widget.ViewPager
|
||||
|
||||
25
app/src/main/res/layout/kehumobanfragment.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:omi="http://schemas.android.com/apk/res-auto"
|
||||
android:orientation="vertical"
|
||||
android:background="#F5F5F5">
|
||||
|
||||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||
android:id="@+id/srl"
|
||||
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/marking_fragment_recyclerView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#F5F5F5" />
|
||||
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
BIN
app/src/main/res/mipmap-hdpi/icon_cus_new.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/mipmap-mdpi/icon_cus_new.png
Normal file
|
After Width: | Height: | Size: 854 B |
BIN
app/src/main/res/mipmap-xhdpi/icon_cus_new.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
app/src/main/res/mipmap-xhdpi/marking_sousuo.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/icon_cus_new.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/marking_sousuo.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_cus_new.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/marking_sousuo.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
@@ -1,5 +1,5 @@
|
||||
<resources>
|
||||
<string name="app_name">NewJiaJieSong</string>
|
||||
<string name="app_name">七月七</string>
|
||||
|
||||
|
||||
<string name="text_commit_apply">提交申请</string>
|
||||
|
||||