Blame view
GameSDKRelease/res/layout/fragment_signup.xml
1.6 KB
f63824b88
![]() |
1 2 |
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
5b95cccaf
![]() |
3 |
android:layout_width="match_parent" |
f63824b88
![]() |
4 5 6 7 |
android:layout_height="wrap_content" android:scrollbars="none" > <LinearLayout |
5b95cccaf
![]() |
8 |
android:layout_width="match_parent" |
f63824b88
![]() |
9 |
android:layout_height="wrap_content" |
5b95cccaf
![]() |
10 |
android:background="@drawable/dialog_bg" |
f63824b88
![]() |
11 12 13 14 15 16 17 18 19 |
android:minWidth="293dp" android:orientation="vertical" > <EditText android:id="@+id/username" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@drawable/et_bg" |
5b95cccaf
![]() |
20 21 |
android:hint="@string/user_name_hint" android:imeOptions="flagNoExtractUi" /> |
f63824b88
![]() |
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<EditText android:id="@+id/pwd" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@drawable/et_bg" android:hint="@string/password_hint" android:imeOptions="flagNoExtractUi" android:inputType="textPassword" /> <Button android:id="@+id/signup" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="8dp" |
5b95cccaf
![]() |
38 |
android:background="@drawable/btn_orange_bg" |
f63824b88
![]() |
39 40 41 42 43 44 45 |
android:padding="5dp" android:text="@string/signup" android:textColor="@android:color/white" android:textSize="16sp" /> </LinearLayout> </ScrollView> |