1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- style="@style/dalan_framelayout_llyt"
- android:paddingBottom="15dp"
- android:paddingTop="8dp">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@drawable/zk_bind_tel_privilege" />
- <LinearLayout
- style="@style/dalan_frame_llyt"
- android:layout_marginTop="@dimen/dalan_margin_12">
- <EditText
- android:id="@+id/dalan_etx_bind_tel_tel"
- style="@style/dalan_account_edittext"
- android:hint="@string/dalan_input_bind_tel" />
- </LinearLayout>
- <LinearLayout
- style="@style/dalan_frame_llyt"
- android:layout_marginTop="@dimen/dalan_editText_margin">
- <EditText
- android:id="@+id/dalan_etx_bind_tel_verification_code"
- style="@style/dalan_account_edittext"
- android:hint="@string/dalan_input_verification_code" />
- <Button
- android:id="@+id/dalan_btn_bind_tel_get_verification_code"
- style="@style/dalan_btn_verification_code"
- android:text="@string/dalan_btn_get_verification_code" />
- </LinearLayout>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="end"
- android:layout_marginTop="@dimen/dalan_check_box_protocol_margin"
- android:text="@string/dalan_please_bind_tel"
- android:textColor="@color/dalan_orange"
- android:textSize="@dimen/dalan_text_size_protocol" />
- <Button
- android:id="@+id/dalan_btn_bind_tel_ok"
- style="@style/dalan_cyan_button"
- android:layout_marginTop="15dp"
- android:text="@string/dalan_btn_bind" />
- </LinearLayout>
|