hch
2025-07-18 2a011653190c36e6fb1f790b3819a1d6b0744aef
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="2dip"
     >
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:layout_marginTop="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    >
    
    <com.aoyou.sdk.view.MyNoFocusListView
        android:id="@+id/lv_order_fail"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@android:color/white"
        android:dividerHeight="10dp"
        />
     <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="80dip"
        android:paddingTop="5dip"
        android:paddingBottom="5dip"
        android:paddingLeft="15dip"
        android:paddingRight="5dip"
        android:orientation="vertical"
        android:layout_marginTop="30dip"
        android:visibility="gone"
        android:id="@+id/ll_null"
        android:gravity="center"
        android:background="@drawable/ttw_order_bg"
         >
           <TextView 
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:text="亲,你还没有充值哦!"
               />
        </LinearLayout>
    </LinearLayout>
 </RelativeLayout>