| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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="wrap_content"
- android:layout_gravity="center"
- android:layout_marginLeft="47dp"
- android:layout_marginRight="47dp"
- android:background="@drawable/shape_ffffff_8dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="20dp"
- android:text="邀请码"
- android:textColor="@color/black_333333"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/tv_content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="27dp"
- android:text="您已经有推荐人,无需填写邀请码!"
- android:textColor="@color/black_333333"
- android:textSize="15sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="27dp"
- android:background="@color/gray_e5e5e5" />
- <com.yihucha.hbyhc.view.BoldText
- android:id="@+id/confirm_positive"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="12dp"
- android:layout_marginBottom="16dp"
- android:gravity="center"
- android:text="我知道了"
- android:textColor="@color/red_fe0032"
- android:textSize="18sp" />
- </LinearLayout>
|