<?xml version="1.0" encoding="utf-8"?>
|
<com.google.android.material.card.MaterialCardView
|
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="wrap_content"
|
android:layout_marginHorizontal="12dp"
|
android:layout_marginVertical="6dp"
|
app:cardCornerRadius="8dp"
|
app:cardElevation="2dp"
|
app:cardBackgroundColor="@android:color/white"
|
app:strokeColor="#FF000000"
|
app:strokeWidth="2dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<!-- 驿站名称和包裹数量 -->
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:layout_marginBottom="12dp">
|
|
<ImageView
|
android:id="@+id/iv_station_icon"
|
android:layout_width="20dp"
|
android:layout_height="20dp"
|
android:layout_gravity="center_vertical"
|
android:src="@drawable/location"/>
|
|
<TextView
|
android:id="@+id/tv_station_name"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:layout_marginStart="8dp"
|
android:textSize="16sp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:id="@+id/tv_package_count"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textSize="14sp"
|
android:textColor="#666666"/>
|
</LinearLayout>
|
|
<!-- 包裹列表 -->
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_packages"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
</com.google.android.material.card.MaterialCardView>
|