Android Tabs with out ActionBar

In the Previous post, I created a project with VPI Libary and AppCompat Library to Show Swipy Tabs in android.

But , If i don't want the ActionBar at the Top, We can hide/remove it through styles.xml file

Styles.xml
=========

NoActionBar

 <style name="NoActionBar" parent="Theme.AppCompat.Light">
        <item name="android:windowActionBar">false</item>
        <item name="android:windowNoTitle">true</item>
    </style>



For full Screen

 <style name="NoActionBar" parent="Theme.AppCompat.Light">
        <item name="android:windowActionBar">false</item>
        <item name="android:windowNoTitle">true</item>
    <item name="android:windowFullscreen">true</item>
    </style>





ScreenShot of the app
----------------------
Android tabs without ActionBar




















Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();

Armed Posts

Recent