109 lines
3.8 KiB
XML
109 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
android:descendantFocusability="blocksDescendants"
|
|
tools:ignore="HardcodedText">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout style="@style/register_item_container">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name_title"
|
|
style="@style/register_text_title"
|
|
android:text="团队名称:" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_team_name"
|
|
style="@style/register_input"
|
|
android:hint="请输入团队名称" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/register_item_container">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_team_member_title"
|
|
style="@style/register_text_title"
|
|
android:text="团队人数:" />
|
|
|
|
<EditText
|
|
android:id="@+id/tv_team_member_content"
|
|
style="@style/register_input"
|
|
android:hint="请输入团队人数"
|
|
android:inputType="number" />
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rlv_member"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout style="@style/register_item_container">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_area_title"
|
|
style="@style/register_text_title"
|
|
android:text="所属区域:" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_area"
|
|
style="@style/register_text_sel"
|
|
android:hint="请选择所属区域" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/register_item_container">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_team_desc_title"
|
|
style="@style/register_text_title"
|
|
android:text="团队介绍:" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_team_desc_content"
|
|
style="@style/register_input"
|
|
android:gravity="start"
|
|
android:hint="请输入团队介绍"
|
|
android:minLines="5" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
style="@style/register_item_container"
|
|
android:visibility="gone">
|
|
|
|
<CheckBox
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="我已阅读并同意" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/deal_team"
|
|
android:textColor="@color/text_yellow" />
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btn_register_team"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="30dp"
|
|
android:layout_marginTop="45dp"
|
|
android:layout_marginRight="30dp"
|
|
android:layout_marginBottom="30dp"
|
|
android:background="@drawable/sel_btn_activity_sign_up_no_ra"
|
|
android:text="保存"
|
|
android:textColor="@color/col_verify_text" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView> |