| 1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.constraint.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/layout_coordinator"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/recycler_view_main"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"/>
- <kr.co.zumo.app.lifeplus.view.screen.main.PageIndicator
- android:id="@+id/page_indicator"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <include layout="@layout/main_test_layout"/>
- <android.support.constraint.ConstraintLayout
- android:id="@+id/container_navigation_bar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- android:background="@null">
- </android.support.constraint.ConstraintLayout>
- </android.support.constraint.ConstraintLayout>
|