Skip to content

A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用setVisibility切换FrameLayout里的View等),http://www.jianshu…

Notifications You must be signed in to change notification settings

forkandroid/MagicIndicator

Repository files navigation

MagicIndicator

A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip.

Android ArsenalCodewake

magicindicaotor.gif

Usage

Simple steps, you can integrate MagicIndicator:

  1. checkout out MagicIndicator, which contains source code and demo
  2. import module magicindicator and add dependency:
implementation project(':magicindicator')

or

repositories{... maven{url "https://jitpack.io" } } dependencies{... implementation 'com.github.hackware1993:MagicIndicator:1.6.0'// for support lib implementation 'com.github.hackware1993:MagicIndicator:1.7.0'// for androidx }
  1. add MagicIndicator to your layout xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context="net.lucode.hackware.magicindicatordemo.MainActivity"> <net.lucode.hackware.magicindicator.MagicIndicator android:id="@+id/magic_indicator"android:layout_width="match_parent"android:layout_height="40dp" /> <android.support.v4.view.ViewPager android:id="@+id/view_pager"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1" /> </LinearLayout>
  1. find MagicIndicator through code, initialize it:
MagicIndicatormagicIndicator = (MagicIndicator) findViewById(R.id.magic_indicator); CommonNavigatorcommonNavigator = newCommonNavigator(this); commonNavigator.setAdapter(newCommonNavigatorAdapter(){@OverridepublicintgetCount(){returnmTitleDataList == null ? 0 : mTitleDataList.size()} @OverridepublicIPagerTitleViewgetTitleView(Contextcontext, finalintindex){ColorTransitionPagerTitleViewcolorTransitionPagerTitleView = newColorTransitionPagerTitleView(context); colorTransitionPagerTitleView.setNormalColor(Color.GRAY); colorTransitionPagerTitleView.setSelectedColor(Color.BLACK); colorTransitionPagerTitleView.setText(mTitleDataList.get(index)); colorTransitionPagerTitleView.setOnClickListener(newView.OnClickListener(){@OverridepublicvoidonClick(Viewview){mViewPager.setCurrentItem(index)} }); returncolorTransitionPagerTitleView} @OverridepublicIPagerIndicatorgetIndicator(Contextcontext){LinePagerIndicatorindicator = newLinePagerIndicator(context); indicator.setMode(LinePagerIndicator.MODE_WRAP_CONTENT); returnindicator} }); magicIndicator.setNavigator(commonNavigator);
  1. work with ViewPager:
ViewPagerHelper.bind(magicIndicator, mViewPager);

or

work with Fragment Container(switch Fragment by hide()、show()):

mFramentContainerHelper = newFragmentContainerHelper(magicIndicator); // ...mFragmentContainerHelper.handlePageSelected(pageIndex); // invoke when switch Fragment

Extend

MagicIndicator can be easily extended:

  1. implement IPagerTitleView to customize tab:
publicclassMyPagerTitleViewextendsViewimplementsIPagerTitleView{publicMyPagerTitleView(Contextcontext){super(context)} @OverridepublicvoidonLeave(intindex, inttotalCount, floatleavePercent, booleanleftToRight){} @OverridepublicvoidonEnter(intindex, inttotalCount, floatenterPercent, booleanleftToRight){} @OverridepublicvoidonSelected(intindex, inttotalCount){} @OverridepublicvoidonDeselected(intindex, inttotalCount){} }
  1. implement IPagerIndicator to customize indicator:
publicclassMyPagerIndicatorextendsViewimplementsIPagerIndicator{publicMyPagerIndicator(Contextcontext){super(context)} @OverridepublicvoidonPageSelected(intposition){} @OverridepublicvoidonPageScrolled(intposition, floatpositionOffset, intpositionOffsetPixels){} @OverridepublicvoidonPageScrollStateChanged(intstate){} @OverridepublicvoidonPositionDataProvide(List<PositionData> dataList){} }
  1. use CommonPagerTitleView to load custom layout xml.

Now, enjoy yourself!

See extensions in app/src/main/java/net/lucode/hackware/magicindicatordemo/ext,more extensions adding...

Who developed?

[email protected]

[email protected]

Q&A MagicIndicator交流群

An intermittent perfectionist.

Visit My Blog for more articles about MagicIndicator.

License

MIT License Copyright (c) 2016 hackware1993 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. 

More

Have seen here, give a star?(都看到这儿了,何不给个...,哎,别走啊,star还没...)

About

A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用setVisibility切换FrameLayout里的View等),http://www.jianshu…

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java100.0%