Blame view
GameSDKRelease/res/layout/fragment_signup.xml
2.83 KB
313bd48ae
![]() |
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 |
<?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" > <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" /> <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 android:layout_width="match_parent" android:layout_height="wrap_content" 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> </LinearLayout> </ScrollView> |