Blame view
android/GameSDKRelease/res/layout/fragment_signup.xml
2.83 KB
|
d1bf9b48f
|
1 2 |
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
|
4c1c42af5
|
3 |
android:layout_width="wrap_content" |
|
d1bf9b48f
|
4 5 6 7 |
android:layout_height="wrap_content"
android:scrollbars="none" >
<LinearLayout
|
|
4c1c42af5
|
8 |
android:layout_width="wrap_content" |
|
d1bf9b48f
|
9 |
android:layout_height="wrap_content" |
|
4c1c42af5
|
10 |
android:minWidth="292dp" |
|
d1bf9b48f
|
11 |
android:orientation="vertical" > |
|
4c1c42af5
|
12 |
<LinearLayout |
|
d1bf9b48f
|
13 14 |
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
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 |
android:background="@color/white_translucent"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/light_gray" />
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="31dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="15dp"
android:paddingLeft="8dp"
android:background="@color/white"
android:hint="@string/user_name_hint"
android:imeOptions="flagNoExtractUi"
android:textColor="@color/black_text" />
<EditText
android:id="@+id/pwd"
android:layout_width="match_parent"
android:layout_height="31dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="10dp"
android:paddingLeft="8dp"
android:background="@color/white"
android:hint="@string/password_hint"
android:imeOptions="flagNoExtractUi"
android:inputType="textPassword"
android:textColor="@color/black_text" />
</LinearLayout>
<LinearLayout
|
|
d1bf9b48f
|
54 55 |
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
4c1c42af5
|
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
android:background="@drawable/bottom_light_bg" >
<Button
android:id="@+id/signup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="8dp"
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
android:text="@string/signup"
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>
|
|
d1bf9b48f
|
71 72 73 |
</LinearLayout> </ScrollView> |