Blame view
android/GameSDKRelease/res/layout/fragment_sign_choice.xml
5.85 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 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 |
<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>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="16dp"
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>
<Button
android:id="@+id/play"
android:layout_width="fill_parent"
|
|
bfd80f63f
|
112 |
android:layout_height="wrap_content" |
|
4c1c42af5
|
113 114 115 116 117 118 119 120 121 |
android:layout_marginBottom="16dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="16dp"
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
android:text="@string/quick_play"
android:textColor="@android:color/white"
android:textSize="16sp"
|
|
bfd80f63f
|
122 |
android:textStyle="bold" /> |
|
4c1c42af5
|
123 124 |
<ImageView
|
|
af9c440cf
|
125 |
android:id="@+id/or_line" |
|
4c1c42af5
|
126 127 128 129 130 |
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:background="@drawable/horizontal_line" />
|
|
bfd80f63f
|
131 |
</LinearLayout> |
|
4c1c42af5
|
132 133 |
<LinearLayout
android:layout_width="match_parent"
|
|
5b95cccaf
|
134 |
android:layout_height="wrap_content" |
|
4c1c42af5
|
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
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"
android:layout_marginTop="10dp"
android:layout_marginRight="5dp"
android:src="@drawable/ic_fb" />
<ImageView
android:id="@+id/vk_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="5dp"
android:src="@drawable/ic_vk" />
</LinearLayout>
|
|
5b95cccaf
|
154 155 |
</LinearLayout> |