Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • userCenter
  • src
  • main
  • res
  • layout
  • activity_edit_address.xml
Find file
BlameHistoryPermalink
  • mReturn's avatar
    fix · b4d6d947
    mReturn committed 5 years ago
    b4d6d947
activity_edit_address.xml 5.07 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

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

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/cl_home_listview_bg"
            android:orientation="vertical"
            android:visibility="visible">

            <RelativeLayout
                android:id="@+id/title_idea"
                style="@style/title">

                <TextView
                    android:id="@+id/text_idea"
                    style="@style/text_title"
                    android:text="@string/user_addr_info" />

                <ImageView
                    android:id="@+id/title_back"
                    style="@style/title_image_back" />

                <ImageView
                    style="@style/card_line"
                    android:layout_alignParentBottom="true" />
            </RelativeLayout>
        </RelativeLayout>

        <LinearLayout style="@style/ll_user_edit">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/name_" />

            <EditText
                android:maxLength="30"
                android:id="@+id/edt_name"
                style="@style/edt_user_edit" />
        </LinearLayout>

        <LinearLayout
            style="@style/ll_user_edit"
            android:layout_marginTop="2dp">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/phone_" />

            <EditText
                android:id="@+id/edt_phone"
                style="@style/edt_user_edit"
                android:maxLength="15"
                android:inputType="number" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_province"
            style="@style/ll_user_edit"
            android:gravity="center_vertical"
            android:layout_marginTop="2dp">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/belong_province" />

            <TextView
                android:id="@+id/tv_province"
                style="@style/tv_user_addr"
                android:hint="@string/select_province_hint"
                />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:background="@drawable/icon_arrow_right" />
        </LinearLayout>

        <LinearLayout
            android:gravity="center_vertical"
            android:id="@+id/ll_city"
            style="@style/ll_user_edit"
            android:layout_marginTop="2dp"
            android:visibility="gone">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/setlect_ciy" />

            <TextView
                android:id="@+id/tv_city"
                style="@style/tv_user_addr"
                android:hint="@string/setlect_ciy_hint"
                />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:background="@drawable/icon_arrow_right" />
        </LinearLayout>

        <LinearLayout
            android:gravity="center_vertical"
            android:id="@+id/ll_area"
            style="@style/ll_user_edit"
            android:layout_marginTop="2dp"
            android:visibility="gone">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/setlect_area" />

            <TextView
                android:id="@+id/tv_area"
                style="@style/tv_user_addr"
                android:hint="@string/setlect_area_hint"
                />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:background="@drawable/icon_arrow_right" />
        </LinearLayout>

        <LinearLayout
            style="@style/ll_user_edit"
            android:layout_marginTop="2dp">

            <TextView
                style="@style/tv_user_edit2"
                android:text="@string/deatail_addr_" />

            <EditText
                android:maxLength="60"
                android:id="@+id/edt_detail_addr"
                style="@style/edt_user_edit" />
        </LinearLayout>

        <View
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1" />

        <TextView
            android:id="@+id/tv_submit"
            style="@style/btn_bottom_common"
            android:layout_margin="20dp"
            android:alpha="0.35"
            android:enabled="false"
            android:text="@string/submit" />
    </LinearLayout>
</layout>