parent
1348a3b6b6
commit
76e33a15d4
Binary file not shown.
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<corners android:radius="0dp" /> <!-- 设置圆角弧度 -->
|
||||
<solid android:color="#FF7001" /> <!-- 设置背景颜色 -->
|
||||
<size
|
||||
android:width="40dp"
|
||||
android:height="40dp" />
|
||||
<stroke
|
||||
android:width="0dp"
|
||||
android:color="#fff" />
|
||||
</shape>
|
After Width: | Height: | Size: 17 KiB |
@ -1,37 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center">
|
||||
android:background="#90376997"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/fphonenum"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/fphonenum"
|
||||
android:hint="请输入注册时手机号"
|
||||
/>
|
||||
android:hint="请输入注册时手机号" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/fpassword"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/fpassword"
|
||||
android:hint="请输入新密码"
|
||||
/>
|
||||
android:hint="请输入新密码" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
android:id="@+id/change"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="修改"
|
||||
android:id="@+id/change"/>
|
||||
android:text="修改" />
|
||||
|
||||
</LinearLayout>
|
@ -1,37 +1,58 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center">
|
||||
android:gravity="center|top"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/logoImage"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="272dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginTop="50dp"
|
||||
android:src="@drawable/logo" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
<EditText
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/pk_PickUp"
|
||||
android:hint="请输入取件码"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
<EditText
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/pk_PhoneNum"
|
||||
android:hint="请输入手机尾号后四位"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/pk_PickUp"
|
||||
android:layout_width="256dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/translucent_edit"
|
||||
android:layout_marginTop="40dp"
|
||||
android:gravity="center"
|
||||
android:hint="请输入取件码" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/pk_PhoneNum"
|
||||
android:layout_width="256dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="10dp"
|
||||
android:background="@drawable/translucent_edit"
|
||||
android:gravity="center"
|
||||
android:hint="请输入手机尾号后四位" />
|
||||
|
||||
<Button
|
||||
android:layout_width="wrap_content"
|
||||
android:id="@+id/pk_button"
|
||||
android:layout_width="137dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="取件"
|
||||
android:id="@+id/pk_button"/>
|
||||
android:layout_marginTop="70dp"
|
||||
android:background="@drawable/translucent_button"
|
||||
android:text="取 件"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="20sp" />
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in new issue