22 lines
785 B
XML
22 lines
785 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".Fragment_bookStore">
|
||
|
|
||
|
<android.support.v4.view.ViewPager
|
||
|
android:id="@+id/viewpager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.design.widget.TabLayout
|
||
|
android:id="@+id/tab_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:tabMode="fixed"/>
|
||
|
|
||
|
</android.support.v4.view.ViewPager>
|
||
|
|
||
|
</FrameLayout>
|