fragmentwaitapprove_not_data_layout.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <FrameLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent" >
  10. <ListView
  11. android:id="@+id/lv_WaitApprove_not_content"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent" >
  14. </ListView>
  15. <RelativeLayout
  16. android:id="@+id/rl_WaitApprove_not_data"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:background="@color/white"
  20. android:visibility="gone" >
  21. <LinearLayout
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_centerInParent="true"
  25. android:orientation="vertical" >
  26. <ImageView
  27. android:layout_width="@dimen/iv_layout_width_64"
  28. android:layout_height="@dimen/iv_layout_height_64"
  29. android:background="@drawable/icon_no_data" />
  30. <TextView
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_gravity="center"
  34. android:layout_marginTop="@dimen/tv_layout_marginTop_10"
  35. android:text="无数据"
  36. android:textSize="@dimen/textsize_22" />
  37. </LinearLayout>
  38. </RelativeLayout>
  39. </FrameLayout>
  40. </LinearLayout>