MaterialTabsAdavanced


Source link: https://github.com/jjhesk/MaterialTabsAdavanced

MaterialTabsAdvanced

Custom Tabs with Material Design animations for pre-Lollipop devices [Download example apk] It requires 14+ API and android support v7 (Toolbar)

Developer notes

Dependency: Android-UI Reveal Color View
If you are using MaterialTabs in your app and would like to be listed here, please let me know via email!

Release features

v1.0.4

  • - fix some bugs OnePlusOne v1.0.1
  • - Support custom font and custom textview by external textview library
  • - Single line implementations
  • - Adaptive layout and extra frames

How to use:

define it in xml layout with custom attributes

setup your own attributes from the xml from here

<!-- for Text Tabs --> <hkm.ui.materialtabs.MaterialTabHost

android:id="@+id/materialTabHost"

android:layout_width="match_parent"

android:layout_height="48dp"

app:advtabs_textColor="#FFFFFF"

app:advtabs_materialTabsPrimaryColor="YOUR_PRIMARY_COLOR"

app:advtabs_nonFixTabsCountStart="4"

app:advtabs_accentColor="YOUR_ACCENT_COLOR" /> <!-- for icon tabs --> <hkm.ui.materialtabs.MaterialTabHost

android:id="@+id/materialTabHost"

android:layout_width="match_parent"

android:layout_height="48dp"

app:advtabs_iconColor="#FFFFFF"

app:advtabs_materialTabsPrimaryColor="YOUR_PRIMARY_COLOR"

app:advtabs_accentColor="YOUR_ACCENT_COLOR"

app:advtabs_nonFixTabsCountStart="4"

app:advtabs_hasIcons="true"/>

( I'm working on use wrap_content instead 48dp)

Connect to java code and add to viewPager

MaterialTabHost tabHost;  @Override  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 tabHost = (MaterialTabHost) this.findViewById(R.id.materialTabHost);

pager = (ViewPager) this.findViewById(R.id.viewpager);

 // init view pager
pagerAdapter = new ViewPagerAdapter(getSupportFragmentManager());

pager.setAdapter(pagerAdapter);

pager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {

 @Override

 public void onPageSelected(int position) {

  // when user do a swipe the selected tab change

  tabHost.setSelectedNavigationItem(position);

 
}

}
);

 // insert all tabs from pagerAdapter data
for (int i = 0; i < pagerAdapter.getCount();
 i++) {

 tabHost.addTab(

tabHost.newTab()

  .setIcon(getIcon(i))

  .setTabListener(this)

  );

  
}
 
}
  @Override  public void onTabSelected(MaterialTab tab) {

// when the tab is clicked the pager swipe content to the tab position
pager.setCurrentItem(tab.getPosition());
  
}
 

###add new tab

Just the text only

private MaterialTabHost tab;
tab.addTab(tab.createCustomTextTab(R.layout.item_tab, txt, false).setTabListener(this));
 

R.layout.item_tab

That will be consist of your own table arrangement implementations.

It is required to apply with the callback interface from using setTabListener

extends ActionBarActivity implements MaterialTabListener

Installations

Please check with supported repo mavens

###jitpack remote

repositories {

  maven {
  url "https://jitpack.io"  
}
 
}
  dependencies {

 compile 'com.github.jjhesk:MaterialTabsAdavanced:vX.XX'  
}

###Bintray Remote

repositories {

  maven {
  url "http://dl.bintray.com/jjhesk/maven"  
}
 
}
  dependencies {

compile 'com.hkm:advancedmaterialtabs:1.0.0@aar' 
}
 

Limitations

Actually, this library have some limitations: - No selector animations

These problems are currently in development

Fixed and Scrollable tabs.

With text tabs

N default = 3 [1 - N] Fixed Tabs
[N - ∞] Scrollable Tabs

With icon tabs

[1 - 5] Fixed Tabs
[6 - ∞] Scrollable Tabs

###Donation Accepted

Resources

This library for Android projects adds Greasemonkey-compatible user script support to standard WebView components.

Android Library to simplify SharedPreferences use with code generation.

Helper to ask runtime permission on android marshmallow

The library takes care themselves to check whether a permit has already been agreed by the user or not. If the user has given consent call, the system dialog for the acceptance.

A customizable extension of Android Switches that supports also more than 2 items.

Android-Retainable-Tasks is an easy to use mini-library for easy asynchronous background tasking with callback support to the UI. This library is based on the Android AsyncTask implementation but with support for retaining tasks and therefore surviving configuration changes (orientation).

InfiniteScrollListener for RecyclerView in Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes