Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21478 rajender 1
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
3
    android:layout_height="match_parent" tools:context="com.saholic.profittill.main.MyProfile">
4
 
5
    <ScrollView
6
        android:background="@color/White"
7
        android:layout_width="match_parent"
8
        android:layout_height="match_parent"
9
        android:fillViewport="false"
10
        >
11
        <LinearLayout
12
            android:layout_width="match_parent"
13
            android:layout_height="match_parent"
14
            android:orientation="vertical" >
15
 
16
            <RelativeLayout
17
                android:layout_height="120dp"
18
                android:layout_width="match_parent"
19
 
20
                android:background="@color/green_tobe_used">
21
                <TextView
22
                     android:id="@+id/profileName"
23
                     android:textSize="30dp"
24
                     android:editable="true"
25
                    android:text="Get in Touch"
26
 
27
                     android:layout_marginTop="20dp"
28
                     android:layout_marginLeft="20dp"
29
                     android:textColor="@color/White"
30
                     android:layout_width="wrap_content"
31
                     android:layout_height="wrap_content" />
32
 
33
                <TextView
34
                    android:id="@+id/profileId"
35
                    android:textSize="20dp"
36
                    android:editable="true"
37
                    android:layout_below="@+id/profileName"
38
                    android:text="Use the form below to share any problem or issue"
39
                    android:layout_marginLeft="20dp"
40
                    android:textColor="@color/Black"
41
                    android:layout_width="wrap_content"
42
                    android:layout_height="wrap_content" />
43
 
44
            </RelativeLayout>
45
 
46
 
47
            <LinearLayout
48
                android:layout_width="fill_parent"
49
                android:id="@+id/phoneNumberLayout"
50
                android:layout_height="wrap_content" >
51
                <RelativeLayout
52
                    android:layout_width="fill_parent"
53
                    android:padding="10dp"
54
                    android:id="@+id/phoneNumberRelativeLayout"
55
                    android:layout_height="wrap_content" >
56
 
57
                    <Button
58
                        android:id="@+id/profileSave"
59
                        android:text="Send"
60
                        android:background="@color/green_tobe_used"
61
                        android:layout_marginRight="2dp"
62
                        android:layout_alignParentRight="true"
63
                        android:layout_width="wrap_content"
64
                        android:layout_height="30dp"
65
                        android:textColor="@color/White"
66
                        android:layout_gravity="right" />
67
 
68
                </RelativeLayout>
69
            </LinearLayout>
70
 
71
            <LinearLayout
72
                android:layout_width="fill_parent"
73
                android:padding="10dp"
74
                android:layout_marginTop="-25dp"
75
                android:id="@+id/profileNameLayout"
76
                android:layout_height="wrap_content" >
77
 
78
                <RelativeLayout
79
                    android:layout_width="fill_parent"
80
                    android:id="@+id/profileNameRelativeLayout"
81
                    android:layout_height="wrap_content" >
82
                    <TextView
83
                        android:text="From"
84
                        android:id="@+id/profileNameMyProfileText"
85
                        android:layout_width="wrap_content"
86
                        android:layout_height="wrap_content" />
87
 
88
                    <EditText
89
                        android:layout_below="@+id/profileNameMyProfileText"
90
                        android:layout_width="fill_parent"
91
                        android:layout_height="30dp"
92
                        android:layout_centerHorizontal="true"
93
                        android:background="@drawable/myprofileedittext"
94
                        android:id="@+id/profileNameMyProfile" />
95
 
96
 
97
                </RelativeLayout>
98
            </LinearLayout>
99
            <LinearLayout
100
                android:layout_width="fill_parent"
101
                android:padding="10dp"
102
                android:layout_marginTop="-15dp"
103
                android:id="@+id/addressLine1Layout"
104
                android:layout_height="wrap_content" >
105
 
106
                <RelativeLayout
107
                    android:layout_width="fill_parent"
108
                    android:id="@+id/addressLine1RelativeLayout"
109
                    android:layout_height="wrap_content" >
110
                    <TextView
111
                        android:text="Subject"
112
                        android:id="@+id/addressLine1MyProfileText"
113
                        android:layout_width="wrap_content"
114
                        android:layout_height="wrap_content" />
115
 
116
                    <!--<EditText
117
 
118
                        android:layout_width="fill_parent"
119
                        android:layout_height="30dp"
120
                        android:layout_centerHorizontal="true"
121
                        android:background="@drawable/myprofileedittext"
122
                        android:id="@+id/addressLine1MyProfile" />-->
123
                    <Spinner
124
                        android:layout_below="@+id/addressLine1MyProfileText"
125
                        android:layout_width="fill_parent"
126
                        android:layout_centerHorizontal="true"
127
                        android:background="@drawable/myprofileedittext"
128
                        android:id="@+id/addressLine1MyProfile"
129
                        android:layout_height="30dp"></Spinner>
130
 
131
 
132
                </RelativeLayout>
133
            </LinearLayout>
134
 
135
            <LinearLayout
136
                android:layout_width="fill_parent"
137
                android:padding="10dp"
138
                android:layout_marginTop="-25dp"
139
                android:id="@+id/addressLine2Layout"
140
                android:layout_height="wrap_content" >
141
 
142
                <RelativeLayout
143
                    android:layout_width="fill_parent"
144
                    android:id="@+id/addressLine2RelativeLayout"
145
                    android:layout_height="wrap_content" >
146
                    <TextView
147
                        android:text="Address Line 2"
148
                        android:id="@+id/addressLine2MyProfileText"
149
                        android:layout_width="wrap_content"
150
                        android:layout_height="wrap_content" />
151
 
152
                    <EditText
153
                        android:layout_below="@+id/addressLine2MyProfileText"
154
                        android:layout_width="fill_parent"
155
                        android:layout_height="30dp"
156
                        android:layout_centerHorizontal="true"
157
                        android:background="@drawable/myprofileedittext"
158
                        android:id="@+id/addressLine2MyProfile" />
159
 
160
                    <TextView
161
                        android:id="@+id/addressLine2MyProfileEdit"
162
                        android:layout_width="wrap_content"
163
                        android:layout_height="wrap_content"
164
                        android:gravity="center"
165
                        android:layout_marginTop="45dp"
166
                        android:text="Edit"
167
                        android:textColor="@color/green_tobe_used"
168
                        android:layout_centerVertical="true"
169
                        android:layout_alignRight="@+id/addressLine2MyProfile"
170
                        android:layout_alignEnd="@+id/addressLine2MyProfile"
171
                        android:layout_marginRight="25dp"
172
                        android:layout_marginEnd="25dp" />
173
                </RelativeLayout>
174
            </LinearLayout>
175
 
176
            <LinearLayout
177
                android:layout_width="fill_parent"
178
                android:padding="10dp"
179
                android:layout_marginTop="-25dp"
180
                android:id="@+id/cityLayout"
181
                android:layout_height="wrap_content" >
182
 
183
                <RelativeLayout
184
                    android:layout_width="fill_parent"
185
                    android:id="@+id/cityRelativeLayout"
186
                    android:layout_height="wrap_content" >
187
                    <TextView
188
                        android:text="City"
189
                        android:id="@+id/cityMyProfileText"
190
                        android:layout_width="wrap_content"
191
                        android:layout_height="wrap_content" />
192
 
193
                    <EditText
194
                        android:layout_below="@+id/cityMyProfileText"
195
                        android:layout_width="fill_parent"
196
                        android:layout_height="30dp"
197
                        android:layout_centerHorizontal="true"
198
                        android:background="@drawable/myprofileedittext"
199
                        android:id="@+id/cityMyProfile" />
200
 
201
                    <TextView
202
                        android:id="@+id/cityMyProfileEdit"
203
                        android:layout_width="wrap_content"
204
                        android:layout_height="wrap_content"
205
                        android:gravity="center"
206
                        android:layout_marginTop="45dp"
207
                        android:text="Edit"
208
                        android:textColor="@color/green_tobe_used"
209
                        android:layout_centerVertical="true"
210
                        android:layout_alignRight="@+id/cityMyProfile"
211
                        android:layout_alignEnd="@+id/cityMyProfile"
212
                        android:layout_marginRight="25dp"
213
                        android:layout_marginEnd="25dp" />
214
                </RelativeLayout>
215
            </LinearLayout>
216
            <LinearLayout
217
                android:layout_width="fill_parent"
218
                android:padding="10dp"
219
                android:layout_marginTop="-25dp"
220
                android:id="@+id/pincodeLayout"
221
                android:layout_height="wrap_content" >
222
 
223
                <RelativeLayout
224
                    android:layout_width="fill_parent"
225
                    android:id="@+id/pincodeRelativeLayout"
226
                    android:layout_height="wrap_content" >
227
                    <TextView
228
                        android:text="Pincode"
229
                        android:id="@+id/pincodeMyProfileText"
230
                        android:layout_width="wrap_content"
231
                        android:layout_height="wrap_content" />
232
 
233
                    <EditText
234
                        android:layout_below="@+id/pincodeMyProfileText"
235
                        android:layout_width="fill_parent"
236
                        android:layout_height="30dp"
237
                        android:layout_centerHorizontal="true"
238
                        android:background="@drawable/myprofileedittext"
239
                        android:id="@+id/pincodeMyProfile" />
240
 
241
                    <TextView
242
                        android:id="@+id/pincodeMyProfileEdit"
243
                        android:layout_width="wrap_content"
244
                        android:layout_height="wrap_content"
245
                        android:gravity="center"
246
                        android:layout_marginTop="45dp"
247
                        android:text="Edit"
248
                        android:textColor="@color/green_tobe_used"
249
                        android:layout_centerVertical="true"
250
                        android:layout_alignRight="@+id/pincodeMyProfile"
251
                        android:layout_alignEnd="@+id/pincodeMyProfile"
252
                        android:layout_marginRight="25dp"
253
                        android:layout_marginEnd="25dp" />
254
                </RelativeLayout>
255
            </LinearLayout>
256
 
257
 
258
        </LinearLayout>
259
 
260
 
261
    </ScrollView>
262
 
263
 
264
</FrameLayout>