fragment_root.xml 798 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <FrameLayout
  6. android:id="@+id/view_stub_content"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"/>
  9. <ViewStub
  10. android:id="@+id/view_stub_nodata"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_alignParentTop="true"
  14. />
  15. <ViewStub
  16. android:id="@+id/view_stub_error"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:layout_alignParentTop="true"
  20. />
  21. </RelativeLayout>