Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Library for creating a tab view without any effort

Notifications You must be signed in to change notification settings

Rawkush/TabViewLib

Repository files navigation

TabViewLib

Maintenance Build Status GitHub last commit GitHub Release Date Lines of code GitHub issues GitHub closed issues GitHub forks GitHub Repo stars GitHub watchers
GitHub all releases

GitHub ViewCount

Library for creating a tab view without any effort

Download

step 1. Add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
 

Step 2. Add the dependency

dependencies {
 implementation 'com.github.Rawkush:TabViewLib:0.1.1'
 }

Usage

Extend your activity from TutorialActivity and Add fragments in onCreate after super call

public class MainActivity extends TabView {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 addTabs // use this if you wants tabs 
 addFragment(new FragmentModel(new fragment1(),"tab1"));
 addFragment(new FragmentModel(new fragment2(),"tab2"));
	}
}
 addFragment(new FragmentModel(new fragment1(),"tab1")); // adds fragment and create View

if you wish to use your own layout then just add a viewpager and a Tablayout(Not necessary) initialse your viewpager and pass it to the initViewPagerAndTabLayout() method. below is the example how to do this

ViewPager viewPager;
@Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.layout);
 viewPager=findViewById(R.id.viewpager);
 initViewpagerAndTablayout(viewPager);
 addFragment(new FragmentModel(new fragment1(),"tab1"));
 addFragment(new FragmentModel(new fragment2(),"tab2"));
 }

Projects using TabViewlib

  1. RawAnime
  2. AnimeWallpaper

About

Library for creating a tab view without any effort

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /