<?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>
|