kimi
2021-02-18 0ac056bb5b4c567293482286c80a1b83a467cd33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">
 
    <include layout="@layout/toolbar"/>
 
    <ScrollView
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0dp">
        <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
 
        <LinearLayout
                android:layout_marginTop="24dp"
                android:layout_marginLeft="@dimen/magin_common"
                android:layout_marginRight="@dimen/magin_common"
                android:background="@drawable/shape_layout_common"
                android:layout_gravity="center"
                android:gravity="center_vertical"
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
 
            <TextView
                    android:layout_marginTop="@dimen/magin_common"
                    android:text="修改团队名称"
                    android:textSize="@dimen/text_size_15"
                    android:textColor="@color/black"
                    android:layout_gravity="center"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"></TextView>
 
            <TextView
                    android:layout_marginBottom="@dimen/magin_common"
                    android:layout_marginTop="@dimen/magin_common"
                    android:text="修改团队名称后,将在群内通知其他成员"
                    android:textSize="@dimen/text_size_12"
                    android:textColor="@color/comment_gary"
                    android:layout_gravity="center"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content">
 
            </TextView>
 
            <include layout="@layout/divider_h" />
 
            <EditText
                    style="?android:attr/textViewStyle"
                    android:padding="15dp"
                    android:background="@null"
                    android:textColor="#FF363F4D"
                    android:textSize="@dimen/text_size_15"
                    android:layout_marginLeft="@dimen/margin_common"
                    android:layout_marginRight="@dimen/margin_common"
                    android:drawableEnd="@mipmap/ic_del_gary"
                    android:id="@+id/et_team_name"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
 
            </EditText>
 
            <cn.wildfire.chat.kit.widget.RoundImageView
                    android:layout_marginTop="@dimen/margin_common"
                    android:padding="@dimen/margin_common"
                    android:id="@+id/iv_team_portrait"
                    app:roundSize="20dp"
                    android:layout_gravity="center"
                    android:background="@drawable/ic_add_photo"
                    android:layout_width="80dp"
                    android:layout_height="80dp"></cn.wildfire.chat.kit.widget.RoundImageView>
 
        </LinearLayout>
 
 
        <TextView
                android:textColor="#FF2D354C"
                android:textSize="@dimen/text_size_16"
                android:layout_margin="@dimen/magin_common"
                android:text="管理员"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"></TextView>
 
        <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/rv_manager_user"
                android:layout_width="match_parent"
                android:layout_height="120dp">
        </androidx.recyclerview.widget.RecyclerView>
 
        <TextView
                android:visibility="gone"
                android:layout_gravity="center"
                android:gravity="center"
                android:text="左右滑动可查看已设置的管理员"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
 
        <com.highdatas.madeasy.patient.ui.newteam.view.DynamicSoreView
                android:id="@+id/vp_teamUsers"
                android:layout_marginTop="@dimen/margin_large"
                app:SoreNumber="9"
                android:layout_width="match_parent"
                android:layout_height="280dp"></com.highdatas.madeasy.patient.ui.newteam.view.DynamicSoreView>
 
        <Button
 
                android:background="@drawable/shape_button_green"
                android:id="@+id/create_btn"
                android:text="确认创建"
                android:layout_marginBottom="@dimen/margin_common"
                android:textColor="@color/white"
                android:layout_marginTop="24dp"
                android:layout_marginLeft="@dimen/item_margin_left_and_right"
                android:layout_marginRight="@dimen/item_margin_left_and_right"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
 
        </Button>
        </LinearLayout>
    </ScrollView>
</LinearLayout>