管灌系统巡查员智能手机App
zuoxiao
2024-10-16 bc0643f42cc19cfa1153f355851968e5486281ef
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bg_color">
 
    <include
        android:id="@+id/title"
        layout="@layout/top_title" />
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/title"
        android:layout_marginStart="10dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="10dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/bg_fillet_blue"
        android:paddingLeft="15dp"
        android:paddingTop="10dp"
        android:paddingRight="25dp"
        android:paddingBottom="10dp">
 
 
        <TextView
            android:id="@+id/cityName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="城市"
            android:textColor="@color/white"
            android:textSize="18sp" />
 
 
        <TextView
            android:id="@+id/time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/cityName"
            android:layout_alignParentRight="true"
            android:text="日期"
            android:textColor="@color/white"
            android:textSize="16sp" />
 
 
        <TextView
            android:id="@+id/weather_name"
            android:layout_width="wrap_content"
            android:layout_height="30dp"
            android:layout_below="@+id/time"
            android:layout_alignParentRight="true"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:text="天气"
            android:textColor="@color/white"
            android:textSize="16sp" />
 
        <ImageView
            android:id="@+id/weather_img"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_alignTop="@+id/weather_name"
            android:layout_marginRight="10dp"
            android:layout_toLeftOf="@+id/weather_name"
            android:src="@mipmap/weather_99" />
 
 
        <TextView
            android:id="@+id/weather_temperature"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/weather_name"
            android:layout_alignParentRight="true"
            android:layout_marginTop="10dp"
            android:text="温度"
            android:textColor="@color/white"
            android:textSize="16sp" />
 
 
    </RelativeLayout>
 
 
</RelativeLayout>