47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<?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="horizontal"
|
|
>
|
|
<q.rorbin.verticaltablayout.VerticalTabLayout
|
|
android:id="@+id/tablayout"
|
|
android:layout_width="80dp"
|
|
android:layout_height="match_parent"
|
|
android:background="#EDEDED"
|
|
app:indicator_color="#FFFFFF"
|
|
app:indicator_gravity="fill"
|
|
app:tab_height="50dp"
|
|
android:layout_weight="0"
|
|
android:paddingTop="50dp"
|
|
android:layout_margin="1dp"
|
|
app:tab_mode="scrollable" />
|
|
<!-- <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:paddingTop="20dp"
|
|
android:paddingLeft="2dp"
|
|
android:id="@+id/viewpager"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
</LinearLayout> |