2014-06-04 14:58:22 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-27 15:22:01 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-02-03 11:41:13 +01:00
|
|
|
android:orientation="vertical">
|
2015-01-27 15:22:01 +01:00
|
|
|
|
|
|
|
<net.osmand.plus.views.controls.PagerSlidingTabStrip
|
|
|
|
android:id="@+id/sliding_tabs"
|
|
|
|
android:layout_width="match_parent"
|
2015-02-04 11:11:11 +01:00
|
|
|
android:layout_height="@dimen/tab_height"
|
2015-01-27 15:22:01 +01:00
|
|
|
android:background="?attr/colorPrimary"/>
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
<net.osmand.plus.activities.search.toolbar.SplitToolbar
|
|
|
|
android:id="@+id/bottomControls"
|
|
|
|
android:background="?attr/bottomToolBarColor"
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-28 14:27:31 +01:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-01-27 15:22:01 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|