2015-01-27 15:22:01 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-01 12:32:01 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/mainLayout">
|
2015-01-27 15:22:01 +01:00
|
|
|
|
2015-02-03 13:54:45 +01:00
|
|
|
<net.osmand.plus.views.controls.PagerSlidingTabStrip
|
|
|
|
android:id="@+id/sliding_tabs"
|
|
|
|
android:layout_width="fill_parent"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_height="@dimen/list_item_height"
|
2015-02-03 13:54:45 +01:00
|
|
|
android:background="?attr/colorPrimary" />
|
2015-01-27 15:22:01 +01:00
|
|
|
|
|
|
|
|
2015-10-07 16:02:39 +02:00
|
|
|
<include layout="@layout/free_version_banner"/>
|
2015-01-27 15:22:01 +01:00
|
|
|
|
2015-10-07 16:02:39 +02:00
|
|
|
<include layout="@layout/progress_with_two_texts"/>
|
2015-01-27 15:22:01 +01:00
|
|
|
|
2015-02-03 13:54:45 +01:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
2015-01-27 15:22:01 +01:00
|
|
|
|
2015-06-14 19:10:46 +02:00
|
|
|
</LinearLayout>
|