mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-13 02:30:29 -06:00
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/exams_fragment_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_alignParentBottom="true">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.design.widget.TabLayout
|
||
|
android:id="@+id/exams_fragment_tab_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:tabMinWidth="125dp"
|
||
|
app:tabMode="scrollable" />
|
||
|
|
||
|
<android.support.v4.view.ViewPager
|
||
|
android:id="@+id/exams_fragment_viewpager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_below="@id/exams_fragment_tab_layout" />
|
||
|
</RelativeLayout>
|
||
|
</android.support.design.widget.CoordinatorLayout>
|