riku
2025-07-02 3013b813e5df6977c0be921928f73b1a3adde290
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <include android:id="@+id/action_bar" layout="@layout/layout_actionbar"/>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="@dimen/dimen6"
        android:paddingRight="@dimen/dimen6">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <Spinner
                android:id="@+id/sp_top_task"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/dimen6"
                android:visibility="gone">
            </Spinner>
            <Spinner
                android:id="@+id/sp_scene"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_marginTop="@dimen/dimen6"
                android:layout_below="@id/sp_top_task"
                android:visibility="gone">
            </Spinner>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textSize="@dimen/textSize_18"
                android:textColor="@color/black"
                android:layout_marginTop="@dimen/dimen4"
                android:text="顶层任务"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="工地"
                android:gravity="right"/>
        </LinearLayout>
 
        <View
            android:layout_width="match_parent"
            android:layout_height="8dp"
            android:background="#ebebeb" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_marginTop="@dimen/dimen6">
            <TextView
                android:id="@+id/tv_scene_rank"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1.5"
                android:textColor="@drawable/selector_text_black_white"
                android:textSize="@dimen/textSize_18"
                android:clickable="true"
                android:background="@drawable/selector_tab_progress"
                android:gravity="center"
                android:padding="@dimen/dimen4"
                android:text="场景综合排名"/>
            <TextView
                android:id="@+id/tv_town_rank"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1.5"
                android:textColor="@drawable/selector_text_black_white"
                android:textSize="@dimen/textSize_18"
                android:clickable="true"
                android:background="@drawable/selector_tab_progress"
                android:gravity="center"
                android:padding="@dimen/dimen4"
                android:text="街道综合排名"/>
        </LinearLayout>
 
        <View
            android:layout_width="match_parent"
            android:layout_height="0.1dp"
            android:background="@color/transStatusBar" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:layout_marginTop="@dimen/dimen4">
            <!--<LinearLayout-->
                <!--android:layout_width="match_parent"-->
                <!--android:layout_height="wrap_content">-->
                <!--<TextView-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_weight="1.5"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:background="@drawable/shape_task_analysis"-->
                    <!--android:gravity="center"-->
                    <!--android:title="日期"/>-->
    <!---->
                <!--<TextView-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_weight="2"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:gravity="center"-->
                    <!--android:background="@drawable/shape_task_analysis"-->
                    <!--android:title="完成数"/>-->
    <!---->
                <!--<TextView-->
                    <!--android:layout_width="0dp"-->
                    <!--android:layout_height="wrap_content"-->
                    <!--android:layout_weight="2"-->
                    <!--android:textColor="@color/black"-->
                    <!--android:gravity="center"-->
                    <!--android:background="@drawable/shape_task_analysis"-->
                    <!--android:title="百分比"/>-->
            <!--</LinearLayout>-->
            <android.support.v7.widget.RecyclerView
                android:id="@+id/rv_rank"
                android:layout_marginTop="6dp"
                android:paddingBottom="8dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
            </android.support.v7.widget.RecyclerView>
        </LinearLayout>
    </LinearLayout>
 
</LinearLayout>