zhuguifei
2026-01-14 b7ee99a71e88a08a09fe9daada6675a175d09be1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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"
    android:orientation="vertical"
    android:padding="2dp">
 
    <TextView
        android:id="@+id/tv_box_number"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="9sp"
        android:textColor="#999999"
        android:layout_marginBottom="2dp"/>
 
    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        
        <View
            android:id="@+id/view_box"
            android:layout_width="28dp"
            android:layout_height="28dp"
            android:background="@drawable/bg_box_empty" />
            
        <!-- Add a subtle shadow or overlay effect if needed in future -->
    </FrameLayout>
</LinearLayout>