All Projects → Devlight → Navigationtabstrip

Devlight / Navigationtabstrip

Licence: apache-2.0
Navigation tab strip with smooth interaction.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Navigationtabstrip

Navigationtabbar
Navigation tab bar with colorful interactions.
Stars: ✭ 4,907 (+119.65%)
Mutual labels:  library, navigation, bar, tab, devlight
Material Bottom Nav
A bottom navigation bar adhering to the Material Design specification.
Stars: ✭ 41 (-98.16%)
Mutual labels:  navigation, bar, tab
Readablebottombar
Yet another material bottom bar library for Android
Stars: ✭ 977 (-56.27%)
Mutual labels:  bar, tab
Chromeliketabswitcher
Provides a tab switcher similar to the one, which is used in Google Chrome on Android
Stars: ✭ 1,177 (-47.31%)
Mutual labels:  navigation, tab
Efnavigationbar
An ordinary custom navigation bar.
Stars: ✭ 92 (-95.88%)
Mutual labels:  navigation, bar
Infinitecycleviewpager
Infinite cycle ViewPager with two-way orientation and interactive effect.
Stars: ✭ 5,720 (+156.04%)
Mutual labels:  library, devlight
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (-69.47%)
Mutual labels:  library, bar
React Native X Bar
🎩 A flexible, lightweight bar component for common UI patterns in React Native
Stars: ✭ 68 (-96.96%)
Mutual labels:  library, bar
Bubble Navigation
🎉 [Android Library] A light-weight library to easily make beautiful Navigation Bar with ton of 🎨 customization option.
Stars: ✭ 1,537 (-31.2%)
Mutual labels:  library, navigation
Nativescript App Templates
Monorepo for NativeScript app templates
Stars: ✭ 108 (-95.17%)
Mutual labels:  navigation, tab
Jvfloatingdrawer
An easy to use floating drawer view controller.
Stars: ✭ 1,424 (-36.26%)
Mutual labels:  library, navigation
Navigation Toolbar
Navigation toolbar is a slide-modeled UI navigation controller made by @Ramotion
Stars: ✭ 587 (-73.72%)
Mutual labels:  library, navigation
Wunderbar
Simple horizontal bar chart printer for your terminal
Stars: ✭ 572 (-74.4%)
Mutual labels:  library, bar
Ypnavigationbartransition
A Full functional UINavigationBar framework for making bar transition more natural! You don't need to call any UINavigationBar api, implementing YPNavigationBarConfigureStyle protocol for your view controller instead. (类似微信 iOS Navigation Bar 的切换方案)
Stars: ✭ 725 (-67.55%)
Mutual labels:  navigation, bar
Layerjs
layerJS: Javascript UI composition framework
Stars: ✭ 1,825 (-18.31%)
Mutual labels:  library, navigation
Medusa
Android fragment stack controller
Stars: ✭ 395 (-82.32%)
Mutual labels:  navigation, tab
Extramaputils
🌍 the simple utility for google maps in android
Stars: ✭ 293 (-86.88%)
Mutual labels:  library, navigation
Fancy on boarding
Fancy OnBoarding Screen Library
Stars: ✭ 307 (-86.26%)
Mutual labels:  library, navigation
Immersionbar
android 4.4以上沉浸式状态栏和沉浸式导航栏管理,适配横竖屏切换、刘海屏、软键盘弹出等问题,可以修改状态栏字体颜色和导航栏图标颜色,以及不可修改字体颜色手机的适配,适用于Activity、Fragment、DialogFragment、Dialog,PopupWindow,一句代码轻松实现,以及对bar的其他设置,详见README。简书请参考:http://www.jianshu.com/p/2a884e211a62
Stars: ✭ 10,030 (+348.97%)
Mutual labels:  navigation, bar
Fliptabs
Android Flip Tabs Library
Stars: ✭ 135 (-93.96%)
Mutual labels:  library, tab

Devlight


NavigationTabStrip

Navigation tab strip with smooth interaction.

Android Arsenal       Android       Download       License       Codacy


Devlight

You can check the sample app here.

Warn

This library is not more supported. 
If you want to add new feature or fix a bug, grab source code and do it. 
If you think your fix or feature would be useful to other developers, 
I can add link of your repository to this README file. 
Thank you for using our libraries.

Download

You can download a .aar from GitHub's releases page.

Or use Gradle jCenter:

dependencies {
    repositories {
        mavenCentral()
        maven {
            url  'http://dl.bintray.com/gigamole/maven/'
        }
    }
    implementation 'com.github.devlight.navigationtabstrip:navigationtabstrip:+'
}

Or Gradle Maven Central:

compile 'com.github.devlight.navigationtabstrip:navigationtabstrip:1.0.4'

Or Maven:

<dependency>
    <groupId>com.github.devlight.navigationtabstrip</groupId>
    <artifactId>navigationtabstrip</artifactId>
    <version>1.0.4</version>
    <type>aar</type>
</dependency>

Android SDK Version

NavigationTabStrip requires a minimum SDK version of 11.

Sample

Parameters

For NTS you can set such parameters as:

  • color:
    allows you to set strip color.

  • size:
    allows you to set titles size. By default NTS use auto titles size.

  • weight:
    allows you to set weight(height) of strip.

  • factor:
    allows you to set strip resize factor.

  • titles:
    allows you to set NTS titles. This is your tabs.

  • type:
    allows you to set strip type - line or point.

  • gravity:
    allows you to set strip gravity - top or bottom.

  • view pager:
    allows you to connect NTS with ViewPager. If you want your can also set OnPageChangeListener.

  • typeface:
    allows you to set custom typeface to your titles.

  • corners radius:
    allows you to set corners radius of strip.

  • animation duration:
    allows you to set animation duration.

  • inactive color:
    allows you to set inactive titles color.

  • active color:
    allows you to set active title color.

  • tab strip listener:
    allows you to set listener which triggering on start or on end when you set tab index.

Tips

If your set ViewPager you can action down on active tab and do like drag.
NTS use only upper case titles.

Init

Check out in code init:

final NavigationTabStrip navigationTabStrip = (NavigationTabStrip) findViewById(R.id.nts);
navigationTabStrip.setTitles("Nav", "Tab", "Strip");
navigationTabStrip.setTabIndex(0, true);
navigationTabStrip.setTitleSize(15);
navigationTabStrip.setStripColor(Color.RED);
navigationTabStrip.setStripWeight(6);
navigationTabStrip.setStripFactor(2);
navigationTabStrip.setStripType(NavigationTabStrip.StripType.LINE);
navigationTabStrip.setStripGravity(NavigationTabStrip.StripGravity.BOTTOM);
navigationTabStrip.setTypeface("fonts/typeface.ttf");
navigationTabStrip.setCornersRadius(3);
navigationTabStrip.setAnimationDuration(300);
navigationTabStrip.setInactiveColor(Color.GRAY);
navigationTabStrip.setActiveColor(Color.WHITE);
navigationTabStrip.setOnPageChangeListener(...);
navigationTabStrip.setOnTabStripSelectedIndexListener(...);

Other methods check out in sample.

And XML init:

<com.gigamole.navigationtabstrip.NavigationTabStrip
    android:layout_width="match_parent"
    android:layout_height="50dp"
    app:nts_color="#000"
    app:nts_size="15sp"
    app:nts_weight="3dp"
    app:nts_factor="2.5"
    app:nts_titles="@array/titles"
    app:nts_type="point"
    app:nts_gravity="top"
    app:nts_typeface="fonts/typeface.otf"
    app:nts_corners_radius="1.5dp"
    app:nts_animation_duration="300"
    app:nts_active_color="#000"
    app:nts_inactive_color="#c4c4c4"/>

Getting Help

To report a specific problem or feature request, open a new issue on Github.

Xamarin

Thanks to Martijn van Dijk for developing Xamarin bindings library for NavigationTabStrip.
Plugin is available on Nuget.

Credits

Keren Rijensky Srikant Shetty Oleg Frolov

Author

Created by Basil Miller - @gigamole

Company

Facebook     Twitter     LinkedIn

Here you can see open source work developed by Devlight LLC.
This and another works is an exclusive property of Devlight LLC.

If you want to use this library in applications which will be available on Google Play, please report us about it or author of the library.

Whether you're searching for a new partner or trusted team for creating your new great product we are always ready to start work with you.

You can contact us via [email protected] or [email protected].
Thanks in advance.

Devlight LLC, 2016
devlight.io

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].