<?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">
|
|
<include layout="@layout/item_status_bar" />
|
|
<include layout="@layout/navigation_top_bar" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/trends_goods_bg" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="46dp"
|
android:layout_marginTop="20dp"
|
android:background="@color/white">
|
|
<EditText
|
android:textCursorDrawable="@drawable/shape_input_cursor"
|
android:id="@+id/et_invitecode"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:layout_marginLeft="15dp"
|
android:layout_marginRight="15dp"
|
android:layout_weight="1"
|
android:background="@null"
|
android:digits="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
android:inputType="textEmailAddress"
|
android:maxLength="12"
|
android:paddingTop="5dp"
|
android:paddingBottom="5dp"
|
android:textColor="@color/black"
|
android:textSize="14sp" />
|
|
<ImageView
|
android:id="@+id/iv_delete"
|
android:layout_width="22dp"
|
android:layout_height="22dp"
|
android:layout_gravity="center_vertical|right"
|
android:layout_marginRight="15dp"
|
android:src="@drawable/ic_cancel" />
|
</LinearLayout>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="15dp"
|
android:lineSpacingExtra="8dp"
|
android:text="1.仅支持数字或字母不支持符号,最多12个字符;\n2.邀请码仅能修改一次,请谨慎修改;\n3.邀请码具有唯一性,不可重复。"
|
android:textColor="@color/gray3"
|
android:textSize="14sp">
|
|
</TextView>
|
|
|
</LinearLayout>
|