fragment_main.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:id="@+id/layout_coordinator"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. <android.support.v7.widget.RecyclerView
  10. android:id="@+id/recycler_view_main"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"/>
  13. <kr.co.zumo.app.lifeplus.view.screen.main.PageIndicator
  14. android:id="@+id/page_indicator"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"/>
  17. <include layout="@layout/main_test_layout"/>
  18. <android.support.constraint.ConstraintLayout
  19. android:id="@+id/container_navigation_bar"
  20. android:layout_width="match_parent"
  21. android:layout_height="@dimen/action_bar_height"
  22. android:background="@null">
  23. </android.support.constraint.ConstraintLayout>
  24. </android.support.constraint.ConstraintLayout>