<?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>
|