Blame view
android/GameSDKRelease/res/layout/fragment_mod_password.xml
6.77 KB
|
f633382ee
|
1 2 3 4 5 6 7 8 9 10 11 |
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="none" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="292dp"
android:orientation="vertical" >
|
|
7a00ee278
|
12 |
<include layout="@layout/title" /> |
|
f633382ee
|
13 14 15 16 17 18 19 20 21 22 |
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white_translucent"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/light_gray" />
|
|
7a00ee278
|
23 |
<LinearLayout |
|
f633382ee
|
24 25 |
android:layout_width="match_parent"
android:layout_height="31dp"
|
|
f633382ee
|
26 27 |
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
7a00ee278
|
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 |
android:layout_marginTop="13dp"
android:background="@color/white" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="9.5dp"
android:layout_marginRight="9.5dp"
android:src="@drawable/ic_user" />
<View
android:layout_width="1dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:background="@color/light_gray" />
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent"
android:hint="@string/user_name_hint"
android:paddingLeft="6dp" />
</LinearLayout>
|
|
f633382ee
|
53 |
|
|
7a00ee278
|
54 |
<LinearLayout |
|
f633382ee
|
55 56 |
android:layout_width="match_parent"
android:layout_height="31dp"
|
|
f633382ee
|
57 58 |
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
7a00ee278
|
59 |
android:layout_marginTop="16dp" |
|
f633382ee
|
60 |
android:background="@color/white" |
|
7a00ee278
|
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 |
android:orientation="horizontal" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="12.5dp"
android:layout_marginRight="12.5dp"
android:src="@drawable/ic_pwd" />
<View
android:layout_width="1dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:background="@color/light_gray" />
<EditText
android:id="@+id/old_pwd"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:hint="@string/old_pwd"
android:inputType="textPassword"
android:paddingLeft="6dp" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="200dp"
android:textColor="@color/black_text"
android:layout_gravity="right"
android:layout_marginTop="8dp"
|
|
f633382ee
|
94 |
android:layout_marginRight="35dp" |
|
7a00ee278
|
95 96 97 98 |
android:textSize="10sp"
android:text="@string/reset_intro" />
<LinearLayout
|
|
f633382ee
|
99 100 |
android:layout_width="match_parent"
android:layout_height="31dp"
|
|
f633382ee
|
101 102 |
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
7a00ee278
|
103 |
android:layout_marginTop="12dp" |
|
f633382ee
|
104 |
android:background="@color/white" |
|
7a00ee278
|
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 |
android:orientation="horizontal" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="12.5dp"
android:layout_marginRight="12.5dp"
android:src="@drawable/ic_pwd" />
<View
android:layout_width="1dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:background="@color/light_gray" />
<EditText
android:id="@+id/new_pwd"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:hint="@string/new_pwd"
android:inputType="textPassword"
android:paddingLeft="6dp" />
</LinearLayout>
|
|
f633382ee
|
130 131 132 133 134 |
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
7a00ee278
|
135 136 |
android:background="@drawable/bottom_light_bg"
android:orientation="horizontal" >
|
|
f633382ee
|
137 138 |
<Button
|
|
7a00ee278
|
139 |
android:id="@+id/reset" |
|
f633382ee
|
140 141 142 |
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
|
|
7a00ee278
|
143 144 145 |
android:layout_marginRight="12dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
|
|
f633382ee
|
146 147 |
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
|
|
7a00ee278
|
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
android:text="@string/reset"
android:textColor="@android:color/white"
android:textSize="16sp" />
<Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:layout_marginRight="35dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@drawable/btn_green_bg"
android:padding="5dp"
android:text="@string/submit"
|
|
f633382ee
|
163 164 165 166 167 168 |
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
|