Blame view

android/GameSDKRelease/res/layout/fragment_loging.xml 1.74 KB
4c1c42af5   赵康   增加vk登录
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
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:background="@color/white_translucent"
      android:minWidth="293dp"
      android:orientation="vertical" >
  
      <RelativeLayout
          android:layout_width="match_parent"
          android:layout_height="36dp" >
  
          <TextView
              android:id="@+id/switch_user"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_alignParentRight="true"
              android:layout_centerVertical="true"
              android:layout_marginRight="17dp"
              android:text="@string/switch_user"
              android:textColor="@color/black_text" />
  
          <View
              android:layout_width="fill_parent"
              android:layout_height="1dp"
              android:layout_alignParentBottom="true"
              android:background="@color/light_gray" />
      </RelativeLayout>
  
      <ProgressBar
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center"
          android:layout_marginBottom="17dp"
          android:layout_marginTop="23dp"
          android:indeterminateBehavior="repeat"
          android:indeterminateDrawable="@drawable/loading_progress"
          android:indeterminateDuration="800"
          android:indeterminateOnly="true" />
  
      <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:layout_marginBottom="17dp"
          android:text="@string/loging"
          android:textColor="@color/black_text" />
  
  </LinearLayout>