ll_recharge_user_enter.xml 5.8 KB
<?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="wrap_content" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ll_action_bar_bg"
        android:orientation="vertical"
        android:paddingBottom="15dp" >

        <RelativeLayout
            android:id="@+id/ll_recharge_user_enter_title_bar"
            android:layout_width="match_parent"
            android:layout_height="@dimen/ll_title_height" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:text="@string/ll_recharge_user_enter_title"
                android:textColor="@color/ll_ucenter_navi_text_color_pressed"
                android:textSize="22sp" />

            <LinearLayout
                android:id="@+id/ll_recharge_user_enger_exit"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:background="@drawable/ll_back_btn_selector"
                android:gravity="center" >

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/ll_popup_closed_selector" />
            </LinearLayout>

            <include
                android:id="@+id/ll_error_layer"
                layout="@layout/ll_sdk_error_layer"
                android:visibility="gone" />
        </RelativeLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:orientation="vertical" >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="10dp"
                android:text="@string/ll_recharge_user_enter_label"
                android:textColor="@color/ll_light_black"
                android:textSize="16sp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:background="@drawable/ll_login_box_bg"
                android:gravity="center_vertical"
                android:orientation="horizontal" >

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    android:src="@drawable/ll_yuan" />

                <View
                    android:layout_width="1px"
                    android:layout_height="25dp"
                    android:layout_marginRight="10dp"
                    android:background="@color/ll_color_login_box_gb" />

                <EditText
                    android:id="@+id/ll_user_enter_value"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="@null"
                    android:hint="@string/ll_recharge_user_enter_value"
                    android:inputType="numberDecimal"
                    android:singleLine="true"
                    android:textColor="@color/ll_light_black"
                    android:textColorHint="@color/ll_login_edit_hint"
                    android:textSize="@dimen/ll_edit_text_size" />

                <LinearLayout
                    android:id="@+id/ll_delete_user_enter_money"
                    android:layout_width="50dp"
                    android:layout_height="match_parent"
                    android:layout_marginBottom="1dp"
                    android:layout_marginTop="1dp"
                    android:background="@drawable/ll_back_btn_selector"
                    android:gravity="center"
                    android:visibility="gone" >

                    <ImageView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:src="@drawable/ll_edit_delete" />
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_switch_account_bottom"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/ll_cancel_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_weight="0.6"
                android:background="@drawable/ll_pop_up_cancel_btn"
                android:text="@string/ll_dialog_cancel"
                android:textColor="@android:color/white" />

            <Button
                android:id="@+id/ll_confirm_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:layout_weight="0.4"
                android:background="@drawable/ll_orange_btn_selector"
                android:text="@string/ll_recharge_user_enter_confirm"
                android:textColor="@android:color/white" />
        </LinearLayout>
    </LinearLayout>

</RelativeLayout>