DeteMin
2020-03-31 77c62e023d2dc31200fc696158df84b3aee90ee7
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_su_auto_wait_admin"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!--3.    等待管理员为您注册-->
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="635">
 
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:orientation="vertical">
 
                <ImageView
                    android:layout_gravity="center_horizontal"
                    android:id="@+id/camera_image_view"
                    android:layout_width="@dimen/w175"
                    android:layout_height="@dimen/h235"
                    android:scaleType="centerCrop"
                    android:visibility="invisible"/>
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginTop="@dimen/h30"
                    android:text="请联系管理员"
                    android:textColor="@color/colorWhite"
                    android:textSize="@dimen/font_size_25"
                    android:visibility="invisible"/>
            </LinearLayout>
 
        </RelativeLayout>
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="@dimen/h20" />
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="520" />
    </LinearLayout>
 
</RelativeLayout>