| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="280dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:background="@drawable/shape_ffffff_8dp"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:gravity="center_horizontal"
- android:paddingTop="20dp"
- android:orientation="vertical" >
- <com.yihucha.hbyhc.view.BoldText
- android:id="@+id/confirm_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="#000000"
- android:textSize="18sp"
- android:text="填写邀请人手机号"
- android:visibility="visible" />
- <LinearLayout
- android:id="@+id/confirm_content"
- android:layout_width="match_parent"
- android:layout_height="43dp"
- android:layout_marginTop="16dp"
- android:layout_marginLeft="13dp"
- android:layout_marginRight="13dp"
- android:layout_marginBottom="16dp"
- android:background="@drawable/shape_line_999999_3d5dp"
- android:orientation="horizontal">
- <EditText
- android:id="@+id/et_phone"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@null"
- android:textSize="13sp"
- android:maxLength="11"
- android:inputType="number"
- android:paddingLeft="12.5dp"
- android:paddingRight="12.5dp"
- android:hint="请输入邀请人手机号"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/gray_e5e5e5" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/confirm_negative"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:text="@string/cancel"
- android:textColor="@color/black_333333"
- android:textSize="18sp" />
- <View
- android:id="@+id/line"
- android:layout_width="0.5dp"
- android:layout_height="match_parent"
- android:background="@color/gray_e5e5e5" />
- <com.yihucha.hbyhc.view.BoldText
- android:id="@+id/confirm_positive"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:text="@string/affirm"
- android:textColor="@color/red_fe0032"
- android:textSize="18sp" />
- </LinearLayout>
- </LinearLayout>
|