Newer
Older
dxcgt_app / app / src / main / res / layout / pwd.xml
wangxitong on 12 Jan 2021 1 KB first commit
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/style_main_layout" >

    <view
        android:id="@+id/titlebar"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        class="com.smartdot.cgt.view.TitleBar" >
    </view>

    <ScrollView
        android:id="@+id/scrollView1"
        style="@style/style_main_scrollbar" >

        <LinearLayout
            android:id="@+id/MainLayout"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="10dip" >


            
            <LinearLayout
                style="@style/style_item_layout"
                android:layout_marginTop="10dp" >



                <EditText
                    android:id="@+id/txtAddress"
                    style="@style/style_problem_input_text"
                    android:hint="请输入旧密码" >
                </EditText>
            </LinearLayout>

            <LinearLayout
                style="@style/style_item_layout"
                android:layout_marginTop="10dp" >



                <EditText
                    android:id="@+id/txtEventDesc"
                    style="@style/style_problem_input_text"
                    android:hint="请输入新密码" >
                </EditText>
            </LinearLayout>


            <LinearLayout
                style="@style/style_item_layout"
                android:layout_marginTop="10dp" >


                <EditText
                    android:id="@+id/txtLongitude"
                    style="@style/style_problem_input_text"
                    android:hint="请确认新密码" >
                </EditText>
            </LinearLayout>

        </LinearLayout>
    </ScrollView>



</LinearLayout>