Giter Site home page Giter Site logo

nonconforme / materialtabs-1 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pizza/materialtabs

0.0 2.0 0.0 28.51 MB

Easy-to-integrate tab bar with ripple effect for Android that completely respects Material Design for API 9+

License: MIT License

Java 98.98% Shell 1.02%

materialtabs-1's Introduction

MaterialTabs

Android Arsenal

An easy-to-integrate tab bar for Android that completely respects the [Material Design guidelines] (http://www.google.com/design/spec/components/tabs.html) and supports all versions of Android since API 9!

If you think that this library does not fully respect the Material Design guidelines, file an issue, send a pull request or reach out to me! The goal of this library is to be 100% MaterialDesign-compliant.

Animated screenshot

Sample

You can find a sample app showing what this library can do on the Google Play Store. This sample can also generate the XML code you need instantly and export it! You can then copy paste it in your corresponding layout XML file. Done!

Material Tabs Demo on Google Play

Download

Download the latest AAR or add the following dependency in your build.gradle file:

	dependencies {
	    compile 'io.karim:materialtabs:2.0.5'
	}

Usage

  1. Add the MaterialTabs widget (io.karim.MaterialTabs) in your layout.xml file:

    <io.karim.MaterialTabs
    	   android:id="@+id/material_tabs"
    	   android:layout_width="match_parent"
    	   android:layout_height="48dp"
    	   android:background="?attr/colorPrimary"
    	   app:mtSameWeightTabs="true"
    	   app:mtPaddingMiddle="false" />

Normally, this should go below a Toolbar (android.support.v7.widget.Toolbar) and above a ViewPager (android.support.v4.view.ViewPager). Take a look at [this file] (https://github.com/pizza/MaterialTabs/blob/master/sample/res/layout/activity_tabs.xml) for a better understanding.

  1. In your onCreate method (or onCreateView for a fragment), bind the widget to the ViewPager:

// Initialize the ViewPager and set an adapter ViewPager pager = (ViewPager) findViewById(R.id.pager); pager.setAdapter(new SamplePagerAdapter(getSupportFragmentManager()));

// Bind the tabs to the ViewPager MaterialTabs tabs = (MaterialTabs) findViewById(R.id.tabs); tabs.setViewPager(pager);


3. Create a new class extending FragmentPagerAdapter, and take a look at the "Custom view" section for more info.

## Customization

### Custom view

#### Just a TextView (titles)
If you're looking for tabs with text, take a look at the `SamplePagerAdapter` in [this file] (https://github.com/pizza/MaterialTabs/blob/master/sample/src/io/karim/materialtabs/sample/TabsActivity.java#L331) for a better example.

#### Everything else (icons and more complex views)

Whether you're looking for tabs with icons instead of text or for more complex custom views, take a look at the `MainActivityPagerAdapter` in [this example](https://github.com/pizza/MaterialTabs/blob/master/sample/src/io/karim/materialtabs/sample/MainActivity.java#L152) instead.

Specifically, make sure that your class implements `MaterialTabs.CustomTabProvider` and overrides the following methods:

View getCustomTabView(ViewGroup parent, int position); void onCustomTabViewSelected(View view, int position, boolean alreadySelected); void onCustomTabViewUnselected(View view, int position, boolean alreadyUnselected);


In the first one, create your View from scratch.
In the second and third methods, write code that you want to run when a tab is selected and unselected. A common use case is to replace an icon with another icon when selected. This is exactly the use case demonstrated in the example linked above.

*Note: these last two methods might be called several times even though the user just clicked on a tab once (for example). To deal with this case, the `alreadySelected` and `alreadyUnselected` boolean parameters specify if the corresponding tab was already selected or unselected respectively so that code that should only be executed once isn't executed more than once.*

### Custom font/typeface

If you're using the default TextView (i.e. not using custom views) and would like to use a custom font in the tabs' title text, you can do so in your Java code by adding the last two lines just after binding the tabs to the ViewPager:

```java
 // Initialize the ViewPager and set an adapter
 ViewPager pager = (ViewPager) findViewById(R.id.pager);
 pager.setAdapter(new SamplePagerAdapter(getSupportFragmentManager()));

 // Bind the tabs to the ViewPager
 MaterialTabs tabs = (MaterialTabs) findViewById(R.id.tabs);
 tabs.setViewPager(pager);
 
 // Set custom font/typeface to text in tabs' title
 Typeface selectedTypeface = Typeface.createFromAsset(getAssets(), "fonts/Roboto-Bold.ttf");
 Typeface unselectedTypeface = Typeface.createFromAsset(getAssets(), "fonts/Roboto-Regular.ttf");
 tabs.setTypefaceSelected(selectedTypeface);
 tabs.setTypefaceUnselected(unselectedTypeface);

For this to work, make sure to add your font file (in this case, Roboto-Bold.ttf and Robot-Regular.ttf) in the fonts folder under assets.

Other customizations

There are many attributes that you can override in the XML layout. Here is a table of these attributes, their descriptions and their default value:

Attribute Description
android:textColor Color of text in non-selected tabs
app:mtIndicatorColor Color of the sliding indicator
app:mtUnderlineColor Color of the full-width line on the bottom of the view
app:mtIndicatorHeight Height of the sliding indicator
app:mtUnderlineHeight Height of the full-width line on the bottom of the view
app:mtTabPaddingLeftRight Left and right padding of each tab
app:mtSameWeightTabs If set to true, each tab is given the same weight
app:mtTextAllCaps If true, all tab titles will be upper case
app:mtPaddingMiddle If true, the tabs start at the middle of the view
app:mtTextColorSelected Color of text in selected tab
app:mtMrlRippleColor Color of the ripple
app:mtMrlRippleHighlightColor Color of the background while the ripple is undergoing an animation
app:mtMrlRippleDiameter Radius of starting ripple
app:mtMrlRippleOverlay If true, ripple is drawn in foreground of view. Otherwise, it will drawn in the background
app:mtMrlRippleAlpha Level of transparency (alpha) of the ripple
app:mtMrlRippleDuration Duration of the ripple animation
app:mtMrlRippleFadeDuration Duration of fade out effect on ripple
app:mtMrlRippleDelayClick If true, delays calls to OnClickListeners until ripple effect ends. In that case, the indicator line's move to the clicked tab will also be delayed
app:mtMrlRipplePersistent If true, the ripple background color persists after animation, until setRadius(0) is called
app:mtMrlRippleInAdapter if true, MaterialRippleLayout will be optimized for use in AdapterViews
app:mtMrlRippleRoundedCorners Radius of corners of the ripple. Note: it uses software rendering pipeline for API 17 and below

Don't forget to add xmlns:app="http://schemas.android.com/apk/res-auto" to the root item in your layout.

Contribution

If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request.

Credits

This library is based on the great PagerSlidingTabStrip library by jpardogo and astuetz and on the great material-ripple library by balysv.

materialtabs-1's People

Contributors

jpardogo avatar pizza avatar astuetz avatar yolapop avatar xdragonz avatar antoniolg avatar luciofm avatar jupiter avatar guillermolechuga avatar elliottsj avatar mstevens83 avatar kernald avatar krschultz avatar henriquerocha avatar no99gk avatar shusshu avatar austinschulz avatar ataulm avatar

Watchers

James Cloos avatar Nonconforme 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.