| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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="match_parent"
- android:background="@color/white"
- android:orientation="vertical" >
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <ListView
- android:id="@+id/lv_WaitApprove_not_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </ListView>
- <RelativeLayout
- android:id="@+id/rl_WaitApprove_not_data"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:visibility="gone" >
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="vertical" >
- <ImageView
- android:layout_width="@dimen/iv_layout_width_64"
- android:layout_height="@dimen/iv_layout_height_64"
- android:background="@drawable/icon_no_data" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="@dimen/tv_layout_marginTop_10"
- android:text="无数据"
- android:textSize="@dimen/textsize_22" />
- </LinearLayout>
- </RelativeLayout>
- </FrameLayout>
- </LinearLayout>
|