activity_main.xml 973 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/main_root"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:background="@color/black">
  9. <ImageView
  10. android:id="@+id/main_webloading"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center"
  14. android:layout_marginBottom="5dp"
  15. android:background="@drawable/edufound_loading" />
  16. <android.support.v7.widget.RecyclerView
  17. android:id="@+id/main_recycler"
  18. android:layout_width="500dp"
  19. android:layout_height="200dp"
  20. android:visibility="gone"></android.support.v7.widget.RecyclerView>
  21. </FrameLayout>