32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout 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"
|
||
|
android:orientation="vertical"
|
||
|
tools:context=".Fragments.Fragment_bookStore">
|
||
|
<com.flyco.tablayout.SlidingTabLayout
|
||
|
android:id="@+id/tab_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="40dp"
|
||
|
android:background="@color/white"
|
||
|
app:tl_indicator_color="@color/tabSelected"
|
||
|
app:tl_indicator_corner_radius="1.5dp"
|
||
|
app:tl_indicator_height="2dp"
|
||
|
app:tl_indicator_width="45dp"
|
||
|
app:tl_textSelectColor="@color/tabSelected"
|
||
|
app:tl_textUnselectColor="@color/grey"
|
||
|
app:tl_textsize="14sp"
|
||
|
app:tl_textBold="SELECT"
|
||
|
app:tl_tab_space_equal ="true"
|
||
|
app:tl_indicator_bounce_enable ="true"
|
||
|
/>
|
||
|
<!-- app:tl_indicator_color="@color/crimson" -->
|
||
|
<android.support.v4.view.ViewPager
|
||
|
android:id="@+id/viewpager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
</android.support.v4.view.ViewPager>
|
||
|
|
||
|
</LinearLayout>
|