<?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="match_parent" android:background="@color/white" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:paddingHorizontal="@dimen/dp_10"> <TextView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:paddingVertical="@dimen/dp_10" android:text="用水趋势" android:textColor="@color/mainTextColor" android:textSize="@dimen/textFontSize" /> <com.pengxh.kt.lite.widget.EasyAppCompatSpinner android:id="@+id/periodSpinner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:entries="@array/periodArray" /> </LinearLayout> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginBottom="@dimen/dp_10"> <com.github.mikephil.charting.charts.LineChart android:id="@+id/waterLineChart" android:layout_width="match_parent" android:layout_height="match_parent" /> </FrameLayout> </LinearLayout>