Blame view
android/GameSDKRelease/res/layout/fragment_sign_choice.xml
6.48 KB
|
5b95cccaf
|
1 2 3 |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
|
|
4c1c42af5
|
4 5 |
android:layout_height="wrap_content"
android:gravity="center"
|
|
5b95cccaf
|
6 |
android:orientation="vertical" > |
|
bfd80f63f
|
7 8 9 |
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
10 11 |
android:background="@color/white_translucent"
android:orientation="vertical" >
|
|
bfd80f63f
|
12 |
|
|
4c1c42af5
|
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 |
<LinearLayout
android:layout_width="match_parent"
android:layout_height="31dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
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>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="31dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="16dp"
android:background="@color/white"
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/pwd"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:hint="@string/password_hint"
android:inputType="textPassword"
android:paddingLeft="6dp" />
</LinearLayout>
|
|
7a00ee278
|
76 77 78 79 80 81 82 83 84 85 |
<TextView
android:id="@+id/mod_pwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginRight="35dp"
android:layout_marginTop="12dp"
android:text="@string/mod_pwd"
android:textColor="@color/black_text"
android:textSize="11sp" />
|
|
4c1c42af5
|
86 87 88 89 90 |
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
7a00ee278
|
91 |
android:layout_marginTop="12dp" |
|
4c1c42af5
|
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 |
android:orientation="horizontal" >
<Button
android:id="@+id/gump_reg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:background="@drawable/btn_green_bg"
android:text="@string/signup"
android:textColor="@color/white" />
<Button
android:id="@+id/gump_login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="11dp"
android:layout_weight="1"
android:background="@drawable/btn_orange_bg"
android:gravity="center"
android:text="@string/login"
android:textColor="@android:color/white"
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>
|
|
7a00ee278
|
117 |
<LinearLayout |
|
4c1c42af5
|
118 |
android:layout_width="fill_parent" |
|
bfd80f63f
|
119 |
android:layout_height="wrap_content" |
|
4c1c42af5
|
120 121 |
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
7a00ee278
|
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
android:orientation="horizontal"
android:paddingBottom="16dp"
android:paddingTop="16dp" >
<Button
android:id="@+id/play"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
android:text="@string/quick_play"
android:textColor="@android:color/white"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>
|
|
4c1c42af5
|
137 138 |
<ImageView
|
|
af9c440cf
|
139 |
android:id="@+id/or_line" |
|
4c1c42af5
|
140 141 142 143 144 |
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:background="@drawable/horizontal_line" />
|
|
bfd80f63f
|
145 |
</LinearLayout> |
|
4c1c42af5
|
146 147 |
<LinearLayout
android:layout_width="match_parent"
|
|
5b95cccaf
|
148 |
android:layout_height="wrap_content" |
|
4c1c42af5
|
149 150 151 152 153 154 155 |
android:background="@drawable/bottom_light_bg"
android:gravity="center_horizontal" >
<ImageView
android:id="@+id/fb_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
156 |
android:layout_marginRight="5dp" |
|
7a00ee278
|
157 |
android:layout_marginTop="10dp" |
|
4c1c42af5
|
158 159 160 161 162 163 |
android:src="@drawable/ic_fb" />
<ImageView
android:id="@+id/vk_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
164 |
android:layout_marginLeft="5dp" |
|
7a00ee278
|
165 |
android:layout_marginTop="10dp" |
|
4c1c42af5
|
166 167 |
android:src="@drawable/ic_vk" />
</LinearLayout>
|
|
5b95cccaf
|
168 169 |
</LinearLayout> |