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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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_gravity="center_horizontal"
    android:layout_marginStart="20dip"
    android:layout_marginEnd="20dip"
    android:layout_marginTop="10dip"
    android:background="@drawable/bjskres_autologin_bg"
    android:gravity="center"
    android:orientation="horizontal"
    android:padding="10dip"
    >
 
 
  <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_vertical"
      android:text="@string/bjskres_login_auto_success_welcome"
      android:textColor="@color/bjskres_login_text_black"
      android:textSize="@dimen/bjskres_input_text_size"
      />
 
  <TextView
      android:id="@+id/login_auto_success_name"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_vertical"
      android:text="小王子"
      android:textColor="@color/bjskres_login_text_black"
      android:textSize="@dimen/bjskres_input_text_size"
      />
 
</LinearLayout>