2017-04-26 16:24:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-09-03 03:04:18 -03:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-08-07 06:02:30 -07:00
|
|
|
android:layout_width="match_parent"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:layout_height="match_parent">
|
2017-04-26 16:24:33 -03:00
|
|
|
|
2017-08-07 06:02:30 -07:00
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/main_tab_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-25 15:20:57 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2018-01-30 05:01:57 -02:00
|
|
|
android:background="?attr/colorPrimary"
|
2017-08-07 06:02:30 -07:00
|
|
|
app:tabGravity="fill"/>
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2017-10-25 15:20:57 +02:00
|
|
|
android:layout_below="@id/main_tab_layout"/>
|
2017-04-26 16:24:33 -03:00
|
|
|
|
|
|
|
</RelativeLayout>
|