|
|
@@ -2,6 +2,7 @@
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:fillViewport="true"
|
|
|
android:fitsSystemWindows="true"
|
|
|
android:orientation="vertical"
|
|
|
@@ -29,16 +30,46 @@
|
|
|
android:layout_height="wrap_content"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_deal_vip"
|
|
|
+ <com.google.android.material.textfield.TextInputLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/height_tab_bar"
|
|
|
- android:background="?attr/selectableItemBackground"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:paddingStart="@dimen/activity_horizontal_margin"
|
|
|
- android:paddingEnd="@dimen/activity_horizontal_margin"
|
|
|
- android:text="让用户成为VIP"
|
|
|
- android:textColor="@color/black_text" />
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/margin_default"
|
|
|
+ android:layout_marginEnd="@dimen/margin_default"
|
|
|
+ android:layout_marginTop="@dimen/margin_default"
|
|
|
+ android:hint="请输入要升级的账号"
|
|
|
+ app:boxBackgroundMode="outline"
|
|
|
+ app:boxCornerRadiusBottomEnd="4dp"
|
|
|
+ app:boxCornerRadiusBottomStart="4dp"
|
|
|
+ app:boxCornerRadiusTopEnd="4dp"
|
|
|
+ app:boxCornerRadiusTopStart="4dp"
|
|
|
+ app:boxStrokeWidth="@dimen/width_stroke"
|
|
|
+ app:boxStrokeWidthFocused="@dimen/width_stroke"
|
|
|
+ style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
|
|
|
+
|
|
|
+ <com.google.android.material.textfield.TextInputEditText
|
|
|
+ android:id="@+id/et_email"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="@dimen/text_normal_s"
|
|
|
+ android:inputType="textEmailAddress"
|
|
|
+ android:maxLength="50"/>
|
|
|
+ </com.google.android.material.textfield.TextInputLayout>
|
|
|
+
|
|
|
+ <android.widget.Button
|
|
|
+ android:id="@+id/btn_set_vip"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:minHeight="0dp"
|
|
|
+ android:layout_margin="@dimen/margin_default"
|
|
|
+ android:paddingTop="@dimen/padding_full_width"
|
|
|
+ android:paddingBottom="@dimen/padding_full_width"
|
|
|
+ android:text="升级为VIP用户"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:background="@drawable/selector_btn"
|
|
|
+ style="?android:attr/borderlessButtonStyle"/>
|
|
|
+
|
|
|
+
|
|
|
|
|
|
<include layout="@layout/view_divider_common"/>
|
|
|
|