app_input_orid.xml 12.7 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/top_title_bg"
    android:orientation="vertical" >

    <include layout="@layout/app_top_title" />

    <View
        android:layout_width="fill_parent"
        android:layout_height="0.5dp"
        android:background="#FFFFFF" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginTop="15dp"
            android:background="@drawable/bg_list_item_cricleshape"
            android:orientation="vertical" >

            <LinearLayout
                android:id="@+id/layout01"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:paddingBottom="15dp"
                android:paddingLeft="10dp"
                android:paddingRight="10dp"
                android:paddingTop="15dp" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center|left"
                    android:text="@string/input_orid"
                    android:textColor="#5C8DAB"
                    android:textColorHint="#5C8DAB"
                    android:textScaleX="1"
                    android:textSize="22dp"
                    android:textStyle="bold" />

                <EditText
                    android:id="@+id/input_orid"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dp"
                    android:background="@android:color/transparent"
                    android:duplicateParentState="true"
                    android:gravity="center|left"
                    android:hint="@string/input_orid_hit"
                    android:longClickable="false"
                    android:singleLine="true"
                    android:textColor="#5C8DAB"
                    android:textColorHint="#5C8DAB"
                    android:textSize="18dp" />
            </LinearLayout>

            <View
                android:id="@+id/line"
                android:layout_width="fill_parent"
                android:layout_height="0.5dp"
                android:background="@color/bg_list_item_shape_color" />

            <LinearLayout
                android:id="@+id/layout02"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:paddingBottom="15dp"
                android:paddingLeft="5dp"
                android:paddingRight="5dp"
                android:paddingTop="15dp" >

                <TextView
                    android:id="@+id/pwdText"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="center|left"
                    android:text="@string/input_tpwd"
                    android:textColor="#5C8DAB"
                    android:textColorHint="#5C8DAB"
                    android:textSize="22dp"
                    android:textStyle="bold" />

                <EditText
                    android:id="@+id/input_pwd"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dp"
                    android:background="@android:color/transparent"
                    android:hint="@string/input_tpwd_hit"
                    android:inputType="textPassword"
                    android:longClickable="false"
                    android:maxLength="18"
                    android:singleLine="true"
                    android:textColor="#5C8DAB"
                    android:textColorHint="#5C8DAB"
                    android:textSize="18dp" />
            </LinearLayout>
        </LinearLayout>

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

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center"
                android:orientation="vertical"
                android:weightSum="4" >

                <!-- 1 2 3 -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="horizontal"
                    android:weightSum="3" >

                    <FrameLayout
                        android:id="@+id/one_layout"
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/one"
                            style="@style/btn_num_land"
                            android:text="1" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/two"
                            style="@style/btn_num_land"
                            android:text="2" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/three"
                            style="@style/btn_num_land"
                            android:text="3" />
                    </FrameLayout>
                </LinearLayout>

                <!-- 4 5 6 -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="horizontal"
                    android:weightSum="3" >

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/four"
                            style="@style/btn_num_land"
                            android:text="4" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/five"
                            style="@style/btn_num_land"
                            android:text="5" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/six"
                            style="@style/btn_num_land"
                            android:text="6" />
                    </FrameLayout>
                </LinearLayout>

                <!-- 7 8 9 -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="horizontal"
                    android:weightSum="3" >

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/seven"
                            style="@style/btn_num_land"
                            android:text="7" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/eight"
                            style="@style/btn_num_land"
                            android:text="8" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/nine"
                            style="@style/btn_num_land"
                            android:text="9" />
                    </FrameLayout>
                </LinearLayout>

                <!-- X 0 delete -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:orientation="horizontal"
                    android:weightSum="3" >

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >

                        <TextView
                            android:id="@+id/X_btn"
                            style="@style/btn_num_land"
                            android:text="x" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >
                        <TextView
                            android:id="@+id/zero"
                            style="@style/btn_num_land"
                            android:text="0" />
                    </FrameLayout>

                    <FrameLayout
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_weight="1"
                        android:background="@drawable/btn_blu_devices_selector" >
                        <com.ectrip.trips.view.LongClickButton
                            android:id="@+id/delete"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:background="@drawable/textstyle"
                            android:gravity="center"
                            android:text="删除"
                            android:textColor="@color/num_textcolor_selector"
                            android:textSize="60sp" />
                    </FrameLayout>
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

</LinearLayout>