cloudroam
2025-02-27 a69ed0d5eed84bea789463e718a2774122348685
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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="12dp"
    android:gravity="center_vertical">
 
    <ImageView
        android:id="@+id/iv_package_status"
        android:layout_width="12dp"
        android:layout_height="12dp"
        android:src="@drawable/circle"/>
 
    <TextView
        android:id="@+id/tv_package_info"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:textSize="16sp"
        android:textColor="#333333"/>
 
</LinearLayout>