Панель инструментов Android скрыта, когда используются MaterialtabHost и Viewpager.
main_activity.xml
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MyActivity">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#009688"
/>
<it.neokree.materialtabs.MaterialTabHost
android:id="@+id/tabHost"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_below="@+id/toolbar"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tabHost" />
</RelativeLayout>
</FrameLayout>
<!-- The navigation drawer -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginTop="?attr/actionBarSize"
android:background="#F8F8F8"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:fitsSystemWindows="false" />
styles.xml
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowActionBar">false</item>
</style>
Я создал интерфейс материалов с панелью навигации и панелью инструментов. Затем я хотел добавить две вкладки на экран, поэтому я использовал tabHost lib. Теперь панель инструментов скрыта, и вместо панели инструментов отображаются вкладки. Используемая библиотека: https://github.com/neokree/MaterialTabs/ В моем представлении дизайна она показывает именно то, что мне нужно: http://postimg.org/image/ywxfbnksz/ Но когда я тестирую на реальном устройстве (Kitkat) панель инструментов скрыта
Что не так с моей реализацией?