<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@drawable/game_sdk_shape_bg_round">
|
|
<ImageView
|
android:id="@+id/iv_back"
|
style="@style/game_sdk_dialog_title_back"
|
android:visibility="visible" />
|
|
<ImageView
|
android:id="@+id/iv_dismiss"
|
style="@style/game_sdk_dialog_title_dismiss"
|
android:visibility="visible" />
|
|
<TextView
|
android:id="@+id/tv_title"
|
style="@style/game_sdk_dialog_tile_text"
|
android:text="@string/game_sdk_win_pass_findpass" />
|
|
<LinearLayout
|
android:id="@+id/ll_bind_address"
|
style="@style/game_sdk_layout_input"
|
android:layout_below="@+id/tv_title"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:scaleType="fitXY"
|
android:src="@drawable/game_sdk_accountmanage" />
|
|
<com.yyjia.sdk.widget.ClearEditText
|
android:id="@+id/et_bind_address"
|
style="@style/game_sdk_dialog_edit_text"
|
android:hint="@string/game_sdk_win_account_inpmail" />
|
</LinearLayout>
|
|
<Button
|
android:id="@+id/btn_next"
|
style="@style/game_sdk_dialog_btn"
|
android:layout_below="@+id/ll_bind_address"
|
android:layout_marginTop="@dimen/game_sdk_dialog_weight_top"
|
android:text="@string/game_sdk_win_account_getcode" />
|
|
<TextView
|
android:id="@+id/tv_customer_service"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/btn_next"
|
android:layout_marginLeft="@dimen/game_sdk_dialog_weight_padding"
|
android:layout_marginRight="@dimen/game_sdk_dialog_weight_padding"
|
android:layout_marginTop="30dp"
|
android:textColor="@color/game_sdk_common_text_color"
|
android:textSize="14sp" />
|
</RelativeLayout>
|