1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="60dp"
- tools:context="com.smwl.smsdk.activity.PhonePasswordActivity">
- <LinearLayout
- android:id="@+id/ll_register_password"
- style="@style/X7CommonInputStyle"
- android:layout_width="@dimen/x7_activity_horizontal_width"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:orientation="horizontal">
- <EditText
- android:id="@+id/ed_phone_password"
- style="@style/X7EditTextNoBackCommonStyle"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ems="16"
- android:hint="@string/x7_hint_of_password"
- android:inputType="text" />
- <ImageView
- android:id="@+id/iv_delete_phone_password"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:contentDescription="TODO"
- android:paddingLeft="8dp"
- android:paddingRight="8dp"
- android:src="@drawable/x7_activity_login_delete"
- android:visibility="gone" />
- </LinearLayout>
- <Button
- android:id="@+id/btn_register_user"
- style="@style/X7BtnClickStyle"
- android:layout_below="@id/ll_register_password"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="20dp"
- android:text="@string/x7_register_immediately" />
- <TextView
- android:id="@+id/tv_user_agreement"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/btn_register_user"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="20dp"
- android:clickable="true"
- android:drawablePadding="8dp"
- android:focusable="true"
- android:textColor="@color/x7_text_green" />
- </RelativeLayout>
|