wangguan
2020-12-26 e371272a7885723c7b0ef31a20ae5d0fbead1d30
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mContent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_marginStart="20dip"
    android:layout_marginEnd="20dip"
    android:layout_marginTop="10dip"
    android:background="@drawable/bjskres_autologin_bg"
    android:gravity="center"
    android:padding="10dip"
    >
 
 
  <Button
      android:id="@+id/login_auto_switch"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentRight="true"
      android:background="@drawable/bjskres_autologin_switch"
      android:gravity="center"
      android:text="@string/bjskres_login_auto_switch"
      android:textColor="@color/bjskres_login_text_black"
      android:textSize="@dimen/bjskres_input_text_size"
      />
 
 
  <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      android:layout_toStartOf="@+id/login_auto_switch"
      android:gravity="center"
      android:orientation="horizontal"
      >
 
 
    <TextView
        android:id="@+id/login_auto_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="小王子"
        android:textColor="@color/bjskres_login_text_black"
        android:textSize="@dimen/bjskres_input_text_size"
        />
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/bjskres_login_auto_welcome"
        android:textColor="@color/bjskres_login_text_black"
        android:textSize="@dimen/bjskres_input_text_size"
        />
 
 
  </LinearLayout>
 
 
</RelativeLayout>