haijiang
2018-07-17 63b87b529196c056fb4d96a58eded3936d3445f2
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:paddingTop="@dimen/x14"
    android:paddingLeft="@dimen/x4"
    android:paddingRight="@dimen/x4">
    <TextView
        android:id="@+id/tv_name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:layout_weight="1.2"
        android:textSize="13sp"
        android:textColor="@color/white"
        android:text="颗粒物2.5"/>
    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="3"
        android:background="@mipmap/pro_kuang"
        android:layout_marginRight="@dimen/x6"
        android:layout_marginLeft="@dimen/x6"
        android:padding="@dimen/x2">
        <ProgressBar
            android:id="@+id/progressBar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="?android:attr/progressBarStyleHorizontal"
            android:max="100"
            android:progressDrawable="@drawable/my_progress_background"
            />
    </RelativeLayout>
 
    <TextView
        android:id="@+id/tv_unit"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:layout_weight="2.2"
        android:textColor="@color/white"
        android:textSize="13sp"
        android:text="6396(PCS/0.1L)"/>
</LinearLayout>