Statistics
| Branch: | Revision:

root / res / layout / viewchangepassword.xml @ eb3b3154

History | View | Annotate | Download (2.2 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout
3
  xmlns:android="http://schemas.android.com/apk/res/android"
4
  android:layout_width="fill_parent"
5
  android:layout_height="fill_parent">
6
    <LinearLayout 
7
            android:layout_width="wrap_content" 
8
            android:layout_height="wrap_content" 
9
            android:orientation="vertical">
10
        <TextView 
11
                android:layout_width="wrap_content" 
12
                android:layout_height="wrap_content" 
13
                android:layout_marginLeft="22dip" 
14
                android:id="@+id/new_password_label" 
15
                android:text="New Password">
16
        </TextView>
17
        <EditText 
18
                android:layout_height="wrap_content" 
19
                android:id="@+id/password_edittext" 
20
                android:layout_marginLeft="22dip" 
21
                android:inputType="textPassword" 
22
                android:layout_marginRight="30dip" 
23
                android:layout_width="fill_parent">
24
        </EditText>
25
        <TextView 
26
                android:layout_width="wrap_content" 
27
                android:layout_height="wrap_content" 
28
                android:text="Confirm Password" 
29
                android:layout_marginLeft="22dip" 
30
                android:layout_marginTop="15dip">
31
        </TextView>
32
        <EditText 
33
                android:layout_height="wrap_content" 
34
                android:id="@+id/password_confirm_edittext" 
35
                android:layout_marginLeft="22dip" 
36
                android:password="true" 
37
                android:inputType="textPassword" 
38
                android:layout_width="fill_parent" 
39
                android:layout_marginRight="30dip">
40
        </EditText>
41
        <TextView 
42
                android:layout_width="wrap_content" 
43
                android:layout_height="wrap_content" 
44
                android:text="@string/change_password_warning" 
45
                android:gravity="center" 
46
                android:layout_marginTop="10dip" 
47
                android:layout_marginBottom="10dip">
48
        </TextView>
49
        <RelativeLayout android:layout_width="fill_parent" android:id="@+id/relativeLayout1" android:layout_height="wrap_content">
50
            <Button android:layout_alignParentTop="true" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_width="130dip" android:id="@+id/password_change_button" android:text="Submit"></Button>
51
        </RelativeLayout>
52
    </LinearLayout>
53
</LinearLayout>