Coder Social home page Coder Social logo

handytabbar's Introduction

HandyTabBar

Before that I have been using PagerSlidingTabStrip, it's really simple to use, But most of the time,I want to custom each tab or more things ,so I make this library with my thought, If you like, I hope you can give me more suggestion,Of course, I am very grateful to the PagerSlidingTabStrip author provided such a good code.

Demo

Usage

Step 1

Add dependencies in build.gradle.

	dependencies {
	   compile 'com.whl.handytabbar:library:1.0.4'
	}

Step 2

Add the HandyTabBar to your layout:

    <com.whl.handytabbar.HandyTabBar
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:id="@+id/tab_bar"
        android:background="@color/colorPrimary"
        />

In your java code with simple(Most of time I suggest you use customization,it's very flexible.):

    mTabBar= (HandyTabBar) findViewById(R.id.tab_bar);
    mTabBar.attachToViewPager(mViewPager);

Customization

When you use, I think you want more time to define your own, therefore, provided here

  • TabBarStyle(whole HandyTabBar style):
     TabBarStyle tabBarStyle=new TabBarStyle.Builder(this)
                      .setDrawIndicator(TabBarStyle.INDICATOR_LINE)
                      .setDrawLine(TabBarStyle.TOPLINE)
                      .setDrawDivider(drawDivider)
                      .setIndicatorHeight()
                      setDividerColor()
                      ...
                      .build();
      mTabBar.attachToViewPager(mViewPager,mTabBarStyle);
  • TabLayout(Single Tab should be like):

(your need to extend BaseTabLayout,like this SimpleTabLayout CustomTabLayout in sample project)

        mTabBar.attachToViewPager(mViewPager,customTabLayout);
  • Tips:

HandyTabBar don't provided about animation method(maybe later), but if you want to use animation, very simple, need only in onTabState () method to implements anything you want in the animation, I strongly recommend to use AndroidViewAnimations,just like this

    @Override
    public void onTabState(View v, boolean isSelected,int position) {
        ImageView imageView= (ImageView) v.findViewById(R.id.yourViewID);
        if (isSelected){
            YoYo.with(Techniques.Tada)
                .duration(700)
                .playOn(imageView);
        }else {
            ...
        }
    }

or look this CustomTabLayout;

Thanks

##Contact me

I love open source project, if you have a better idea on this project or way, please let me know, thanks:)

Email

Weibo

handytabbar's People

Contributors

harlonwang avatar

Watchers

James Cloos avatar Annamalai avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.