This commit is contained in:
2020-08-17 17:56:42 +08:00
parent 9f536b6bdf
commit ceddc78013
67 changed files with 3698 additions and 832 deletions

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:topLeftRadius="15dp"
android:topRightRadius="15dp" />
<solid android:color="@color/colorWhite" />
</shape>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="0dp"
android:topRightRadius="5dp" />
<stroke
android:width="0.8dp"
android:color="#e3e3e3" />
<solid android:color="@color/colorWhite"/>
</shape>

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ff2982ec" />
<corners android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
</shape>

View 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">
<solid android:color="#ffffffff" />
<stroke android:width="1dp" android:color="#ff2680eb" />
<corners android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
</shape>

View File

@@ -0,0 +1,77 @@
<?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="#fff5f5f5"
android:orientation="vertical"
android:focusable="true"
android:focusableInTouchMode="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#fff">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp">
<RelativeLayout
android:id="@+id/rl_left"
android:layout_width="50dp"
android:layout_height="48dp">
<ImageView
android:id="@+id/leftIv"
android:visibility="gone"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:gravity="center"
android:src="@mipmap/icon_back" />
</RelativeLayout>
<TextView
android:id="@+id/centerTv"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:textSize="17sp"
android:textColor="@color/hui"
android:text="" />
<TextView
android:id="@+id/RightTv"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:gravity="center"
android:paddingLeft="7dp"
android:paddingRight="7dp"
android:background="@drawable/shape_allocation_tv"
android:layout_marginRight="15dp"
android:textColor="@color/hui"
android:textSize="14sp"
android:text="调拨2" />
</RelativeLayout>
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:background="#fff5f5f5">
</androidx.recyclerview.widget.RecyclerView>
</LinearLayout>

View File

@@ -0,0 +1,69 @@
<?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="75dp"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:background="#ffffff"
>
<RelativeLayout
android:id="@+id/rl_remove"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center_vertical"
android:gravity="center"
>
<ImageView
android:id="@+id/select_iv"
android:layout_width="20dp"
android:layout_height="20dp"
android:src="@mipmap/icon_cheched_true" />
</RelativeLayout>
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<com.example.administrator.seven.widget.CircleImageView
android:id="@+id/iv_default_image"
android:layout_width="55dp"
android:layout_height="70dp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:src="@mipmap/icon_default_head">
</com.example.administrator.seven.widget.CircleImageView>
</RelativeLayout>
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:layout_marginLeft="10dp">
<TextView
android:id="@+id/tv_into_time_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:layout_marginTop="16dp"
android:textColor="#333333"
android:text="2017-12-25 10:50" />
<TextView
android:layout_width="52.5dp"
android:layout_height="13.5dp"
android:text="已分配2次"
android:layout_marginTop="9dp"
android:background="@drawable/shape_allocation_tv"
android:layout_below="@+id/tv_into_time_value"
android:textColor="#ffffffff"
android:textSize="10sp"
/>
</RelativeLayout>
</LinearLayout>

View File

@@ -97,6 +97,7 @@
<TextView
android:id="@+id/tv_cuslist_caozuo"
android:layout_width="43dp"
android:layout_height="25dp"
android:text="操作"

View File

@@ -1,57 +1,94 @@
<?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="74dp"
android:background="#F5F5F5">
android:layout_height="wrap_content"
android:background="@color/colorWhite">
<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:layout_width="59.5dp"
android:layout_height="21.5dp"
android:layout_alignParentRight="true"
android:background="@drawable/shape_deal"
android:gravity="center"
android:text="已分配2次"
android:textColor="#ffffffff"
android:textSize="10sp" />
<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"/>
<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" />
<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" />
<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"
/>
</RelativeLayout>
<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="--"
/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recy_dis"
android:layout_below="@+id/ima_dea_watch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13.5dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
/>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/dimen_2dp"
android:background="#F5F5F5"
/>
</RelativeLayout>

View File

@@ -72,7 +72,7 @@
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="8dp"
android:layout_marginRight="48dp"
android:gravity="center">
<ImageView
@@ -81,6 +81,22 @@
android:background="@mipmap/marking_sousuo"
/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/bt_fenpei"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="8dp"
android:gravity="center">
<ImageView
android:layout_width="16dp"
android:layout_height="16dp"
android:background="@mipmap/icon_fenpei"
/>
</RelativeLayout>
</RelativeLayout>

View File

@@ -0,0 +1,61 @@
<?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:orientation="vertical">
<LinearLayout
android:layout_width="276dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/dialogwhite"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_gravity="center_horizontal"
android:orientation="vertical">
<TextView
android:id="@+id/tvPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="30dp"
android:layout_marginRight="20dp"
android:layout_gravity="center"
android:textColor="#ff000000"
android:textSize="15sp"
android:text="新增成功"
android:textStyle="bold"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/light" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal">
<TextView
android:id="@+id/tvSexSend"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="1"
android:text="确定"
android:layout_gravity="center_vertical"
android:gravity="center"
android:textColor="#000000"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/view_loading"
android:layout_width="match_parent"
android:layout_height="20dp"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="17dp"
android:text="分配行业:"
android:textColor="#ff333333"
android:layout_gravity="bottom"
android:textSize="12sp"
/>
<TextView
android:id="@+id/tv_hangye"
android:layout_width="wrap_content"
android:layout_height="17dp"
android:layout_marginLeft="13.5dp"
android:text="汽车"
android:layout_gravity="bottom"
android:textColor="#ff333333"
android:textSize="12sp"
/>
<TextView
android:id="@+id/tv_fenpei_status"
android:layout_width="46.5dp"
android:layout_height="20dp"
android:layout_marginLeft="13.5dp"
android:text="已分配"
android:gravity="center"
android:background="@drawable/shape_recy_disl"
android:textColor="#ff2680eb"
android:textSize="11sp"
/>
</LinearLayout>

View File

@@ -1,49 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/exit_dialog_bg"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorBlack"
android:gravity="center"
android:layout_marginTop="@dimen/dimen_30"
android:text="确定退出当前账号?"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginLeft="@dimen/dimen_20"
android:layout_marginRight="@dimen/dimen_20"
android:gravity="center"
android:layout_marginTop="@dimen/dimen_20"
android:layout_marginBottom="@dimen/dimen_10"
android:layout_gravity="center">
<Button
android:id="@+id/btn_navigate"
android:layout_width="wrap_content"
android:layout_height="@dimen/dimen_30"
android:background="@null"
android:textColor="@color/colorLightBlue"
android:text="取消"/>
<Button
android:id="@+id/btn_detemine"
android:layout_width="wrap_content"
android:layout_height="@dimen/dimen_30"
android:background="@null"
android:layout_marginLeft="@dimen/dimen_20"
android:textColor="@color/colorLightBlue"
android:text="确定"/>
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,96 @@
<?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="wrap_content"
android:layout_gravity="bottom"
android:orientation="vertical">
<TextView
android:id="@+id/bt_draining_kehu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_drainting_phone"
android:gravity="center"
android:paddingTop="21dp"
android:paddingBottom="21dp"
android:text="拨打电话"
android:textColor="#ff333333"
android:textSize="16sp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD" />
<RelativeLayout
android:id="@+id/rl_tv_uploadAvatar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorWhite"
android:paddingTop="21dp"
android:paddingBottom="21dp">
<TextView
android:id="@+id/tv_uploadAvatar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="信息完善"
android:textColor="#ff333333"
android:textSize="16sp" />
</RelativeLayout>
<LinearLayout
android:id="@+id/ly_kaidan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#DDDDDD" />
<RelativeLayout
android:id="@+id/rl_tv_kaidan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorWhite"
android:paddingTop="21dp"
android:paddingBottom="21dp">
<TextView
android:id="@+id/tv_kaidan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="删除"
android:textColor="#ff333333"
android:textSize="16sp" />
</RelativeLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="#F5F5F5" />
<TextView
android:id="@+id/tv_cancel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorWhite"
android:gravity="center"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:text="取消"
android:textColor="#ff333333"
android:textSize="14sp" />
</LinearLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1001 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 965 B

View File

@@ -64,8 +64,7 @@
<color name="color_131313">#131313</color>
<color name="color_ffc107">#ffc107</color>
<color name="bg_gray">#eeeeee</color>
<color name="hui">#333333</color>
</resources>

View File

@@ -47,6 +47,20 @@
<!--</style>-->
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<!--边框-->
<item name="android:windowIsFloating">true</item>
<!--是否浮现在activity之上-->
<item name="android:windowIsTranslucent">false</item>
<!--半透明-->
<item name="android:windowNoTitle">true</item>
<!--无标题-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--背景透明-->
<item name="android:backgroundDimEnabled">true</item>
<!--模糊-->
</style>
<!--弹出对话框样式基类-->
<style name="dialog_style" parent="Theme.AppCompat.Dialog">
<!--<item name="android:windowAnimationStyle">@style/AnimBottom</item>-->