Blame view
android/GameSDKRelease/res/layout/fragment_sign_choice.xml
2.44 KB
|
5b95cccaf
|
1 2 3 4 5 |
<?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="match_parent"
android:orientation="vertical" >
|
|
bfd80f63f
|
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13dp"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<ImageView
android:id="@+id/utype_tag"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_marginRight="8dp"
android:src="@drawable/utype_quick" />
<TextView
android:id="@+id/tv_nick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textColor="@color/black_text"
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>
|
|
5b95cccaf
|
29 |
<Button |
|
bfd80f63f
|
30 |
android:id="@+id/play" |
|
5b95cccaf
|
31 |
android:layout_width="fill_parent" |
|
bfd80f63f
|
32 33 |
android:layout_height="46dp"
android:layout_marginBottom="10dp"
|
|
5b95cccaf
|
34 35 |
android:layout_marginLeft="13dp"
android:layout_marginRight="13dp"
|
|
bfd80f63f
|
36 |
android:layout_marginTop="23dp" |
|
5b95cccaf
|
37 38 |
android:background="@drawable/btn_orange_bg"
android:padding="5dp"
|
|
bfd80f63f
|
39 |
android:text="Play" |
|
5b95cccaf
|
40 41 |
android:textColor="@android:color/white"
android:textSize="16sp" />
|
|
bfd80f63f
|
42 43 44 45 |
<View
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="@drawable/dash_line" />
|
|
5b95cccaf
|
46 47 48 49 50 51 52 |
<com.facebook.widget.LoginButton
android:id="@+id/fb_login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:layout_marginRight="13dp"
android:layout_marginTop="10dp" />
|
|
bfd80f63f
|
53 |
<Button |
|
5b95cccaf
|
54 55 |
android:id="@+id/gump_login"
android:layout_width="fill_parent"
|
|
bfd80f63f
|
56 57 58 59 60 61 |
android:layout_height="40dp"
android:layout_marginBottom="15dp"
android:layout_marginLeft="13dp"
android:layout_marginRight="13dp"
android:layout_marginTop="8dp"
android:background="@drawable/btn_light_gray_bg"
|
|
5b95cccaf
|
62 |
android:gravity="center" |
|
bfd80f63f
|
63 64 65 |
android:text="@string/gump_login"
android:textColor="@android:color/white"
android:textSize="15sp" />
|
|
5b95cccaf
|
66 67 |
</LinearLayout> |