GithubHelp home page GithubHelp logo

mystudylife / pagerslidingtabstrip-for-xamarin.android Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jamesmontemagno/pagerslidingtabstrip-for-xamarin.android

0.0 2.0 1.0 10.75 MB

Port of Pager Sliding Tab Strip for Xamarin.Android Material Design

License: Other

C# 100.00%

pagerslidingtabstrip-for-xamarin.android's Introduction

Material Pager Sliding Tab Strip for Xamarin.Android

Interactive paging indicator widget, compatible with the ViewPager from the Android Support Library.

PagerSlidingTabStrip Sample Material

Ported from: https://github.com/jpardogo/PagerSlidingTabStrip

Usage

For a working implementation of this project see the Sample/ folder.

  1. Download the NuGet Package: https://www.nuget.org/packages/Refractored.PagerSlidingTabStrip/

Or add the library as a project.

  1. Include the PagerSlidingTabStrip widget in your layout. This should usually be placed above the ViewPager it represents.

    <com.refractored.PagerSlidingTabStrip android:id="@+id/tabs" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" />

  2. In your OnCreate method (or OnCreateView for a fragment), bind the widget to the ViewPager.

    // Initialize the ViewPager and set an adapter
    var pager =  FindViewById<ViewPager>(Resource.Id.pager);
    pager.Adapter = new TestAdapter(SupportFragmentManager);
    
    // Bind the tabs to the ViewPager
    var tabs = FindViewById<PagerSlidingTabStrip>(Resource.Id.tabs);
    tabs.SetViewPager(pager);
    
  3. If your adapter implements the interface CustomTabProvider you can past you custom tab view/s. In case the the view returned contains the id Resource.Id.tab_title, this view should be a TextView and will be used to placed the title.

    Otherwise the default tab will be use (That's a TextView with id R.id.tab_title)

  4. (Optional) If you use implement IOnPageChangeListener with your view pager you should set it in the widget rather than on the pager directly.

    // continued from above
    tabs.SetOnPageChangeListener(pageChangeListener);
    

Customization

From theme:

  • android:textColorPrimary value (from your theme) will be applied automatically to tab's text color , underlineColor, dividerColor and indicatorColor, if any of these values are define in the xml layout.

Notes about some of the native attr:

  • android:textSize Tab text size
  • android:textColor Tab text color
  • android:paddingLeft or android:paddingRight Layout padding. Only the biggest of both will be applied to each side.

Custom attr:

  • pstsIndicatorColor Color of the sliding indicator
  • pstsUnderlineColor Color of the full-width line on the bottom of the view
  • pstsUnderlineHeight Height of the full-width line on the bottom of the view
  • pstsDividerColor Color of the dividers between tabs
  • pstsDividerPadding Top and bottom padding of the dividers
  • pstsDividerWidth Stroke width of divider line, defaults to 0
  • pstsIndicatorHeightHeight of the sliding indicator
  • pstsTabPaddingLeftRight Left and right padding of each tab
  • pstsScrollOffset Scroll offset of the selected tab
  • pstsTabBackground Background drawable of each tab, should be a StateListDrawable
  • pstsShouldExpand If set to true, each tab is given the same weight, default false
  • pstsTextAllCaps If true, all tab titles will be upper case, default true
  • pstsPaddingMiddle If true, the tabs start at the middle of the view (Like Newsstand google app)
  • pstsTextStyle Set the text style, default bold
  • pstsTextSelectedStyle Set the text style of the selected tab, default bold
  • pstsTextAlpha Set the text alpha transparency, default 0.5
  • pstsTextSelectedAlpha Set the text alpha transparency of the selected tab, default 1

Almost all attributes have their respective getters and setters to change them at runtime , open an issue if you miss any.

Ported By

Developed By

Credits

License

The MIT License (MIT)

Copyright (c) 2015 James Montemagno / Refractored LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

This is a derivative of Javier Pardo de Santayana Gómez: https://github.com/jpardogo/PagerSlidingTabStrip Which is a derivative of Andreas Stütz: https://github.com/astuetz/PagerSlidingTabStrip

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.