Show action bar and Up navigation - Android -


i implemented material theme , scroll-able tab in app. navigation in app working action bar not visible. using below theme,

<style name="mymaterialtheme.base" parent="theme.appcompat.light.darkactionbar">         <item name="windownotitle">true</item>         <item name="windowactionbar">false</item>            </style> 

now app have navigation below image,

enter image description here

i want show action bar, navigation , tab.i want below image,

enter image description here

is possible in android.

in manifest.xml file, find activity want add action bar , add these lines

<activity     android:theme="@android:style/theme.appcompat.light.darkactionbar"     .... > 

or can use relativelayout @ top background color, if want custom action bar.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -