<?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:orientation="horizontal"
|
android:padding="16dp">
|
|
<!-- 年度包裹总数 -->
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:orientation="vertical"
|
android:gravity="center">
|
|
<ImageView
|
android:layout_width="48dp"
|
android:layout_height="48dp"
|
android:src="@drawable/ic_package" />
|
|
<TextView
|
android:id="@+id/text_total_packages"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="24sp"
|
android:textStyle="bold"
|
android:text="0个" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="年度包裹总数" />
|
</LinearLayout>
|
|
<!-- 平均每天包裹数 -->
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:orientation="vertical"
|
android:gravity="center">
|
|
<ImageView
|
android:layout_width="48dp"
|
android:layout_height="48dp"
|
android:src="@drawable/ic_average" />
|
|
<TextView
|
android:id="@+id/text_daily_average"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="24sp"
|
android:textStyle="bold"
|
android:text="0.00" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="平均每天包裹数" />
|
</LinearLayout>
|
</LinearLayout>
|