Blame view

android/GameSDKRelease/res/layout/fragment_sign_choice.xml 2.44 KB
5b95cccaf   赵康   version 2.0
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   赵康   add pay method fo...
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   赵康   version 2.0
29
      <Button
bfd80f63f   赵康   add pay method fo...
30
          android:id="@+id/play"
5b95cccaf   赵康   version 2.0
31
          android:layout_width="fill_parent"
bfd80f63f   赵康   add pay method fo...
32
33
          android:layout_height="46dp"
          android:layout_marginBottom="10dp"
5b95cccaf   赵康   version 2.0
34
35
          android:layout_marginLeft="13dp"
          android:layout_marginRight="13dp"
bfd80f63f   赵康   add pay method fo...
36
          android:layout_marginTop="23dp"
5b95cccaf   赵康   version 2.0
37
38
          android:background="@drawable/btn_orange_bg"
          android:padding="5dp"
bfd80f63f   赵康   add pay method fo...
39
          android:text="Play"
5b95cccaf   赵康   version 2.0
40
41
          android:textColor="@android:color/white"
          android:textSize="16sp" />
bfd80f63f   赵康   add pay method fo...
42
43
44
45
      <View
          android:layout_width="fill_parent"
          android:layout_height="2dp"
          android:background="@drawable/dash_line" />
5b95cccaf   赵康   version 2.0
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   赵康   add pay method fo...
53
      <Button
5b95cccaf   赵康   version 2.0
54
55
          android:id="@+id/gump_login"
          android:layout_width="fill_parent"
bfd80f63f   赵康   add pay method fo...
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   赵康   version 2.0
62
          android:gravity="center"
bfd80f63f   赵康   add pay method fo...
63
64
65
          android:text="@string/gump_login"
          android:textColor="@android:color/white"
          android:textSize="15sp" />
5b95cccaf   赵康   version 2.0
66
67
  
  </LinearLayout>