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,
i want show action bar, navigation , tab.i want below image,
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
Post a Comment