Blame view
InlandSDKRelease/res/layout/fragment_sign_choice.xml
5.29 KB
|
e0ca8afd8
|
1 2 3 4 5 6 7 8 9 10 11 12 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 112 113 |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white_translucent"
android:orientation="vertical" >
<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"
android:layout_height="wrap_content"
|
|
2a5af05fa
|
114 |
android:layout_marginBottom="0dp" |
|
e0ca8afd8
|
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
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"
android:textStyle="bold" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
|
|
2a5af05fa
|
130 |
android:visibility="gone" |
|
e0ca8afd8
|
131 132 133 134 135 136 137 138 139 140 141 142 |
android:background="@drawable/horizontal_line" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bottom_light_bg"
android:gravity="center_horizontal" >
</LinearLayout>
</LinearLayout>
|