Last active
August 29, 2015 14:18
-
-
Save pedrolaranjeiro/2a0aac0723e44e54c621 to your computer and use it in GitHub Desktop.
Adaptation of TabPageIndicator to support Centered Icon only tabs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.phempto.ui.home.adapter; | |
import android.support.v4.app.Fragment; | |
import android.support.v4.app.FragmentManager; | |
import android.support.v4.app.FragmentPagerAdapter; | |
import com.phempto.ui.home.fragment.BaseFragment; | |
import com.phempto.ui.home.fragment.HomeFragment; | |
import com.viewpagerindicator.IconPagerAdapter; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class HomePageAdapter extends FragmentPagerAdapter implements IconPagerAdapter { | |
private List<Fragment> fragments; | |
public HomePageAdapter(FragmentManager fm) { | |
super(fm); | |
fragments = new ArrayList<>(); | |
fragments.add(BaseFragment.newInstance()); | |
fragments.add(BaseFragment.newInstance()); | |
fragments.add(HomeFragment.newInstance()); | |
fragments.add(BaseFragment.newInstance()); | |
} | |
@Override | |
public Fragment getItem(int position) { | |
return fragments.get(position); | |
} | |
@Override | |
public int getIconResId(int position) { | |
return ICONS[position]; | |
} | |
@Override | |
public int getCount() { | |
return fragments.size(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2011 The Android Open Source Project | |
* Copyright (C) 2011 Jake Wharton | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package com.viewpagerindicator; | |
import android.content.Context; | |
import android.support.v4.view.PagerAdapter; | |
import android.support.v4.view.ViewPager; | |
import android.support.v4.view.ViewPager.OnPageChangeListener; | |
import android.util.AttributeSet; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.HorizontalScrollView; | |
import android.widget.ImageView; | |
import android.widget.LinearLayout; | |
import android.widget.TextView; | |
import static android.view.ViewGroup.LayoutParams.MATCH_PARENT; | |
import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT; | |
/** | |
* This widget implements the dynamic action bar tab behavior that can change | |
* across different configurations or circumstances. | |
*/ | |
public class IconCenterPageIndicator extends HorizontalScrollView implements PageIndicator { | |
/** | |
* Interface for a callback when the selected tab has been reselected. | |
*/ | |
public interface OnTabReselectedListener { | |
/** | |
* Callback when the selected tab has been reselected. | |
* | |
* @param position Position of the current center item. | |
*/ | |
void onTabReselected(int position); | |
} | |
private Runnable mTabSelector; | |
private final OnClickListener mTabClickListener = new OnClickListener() { | |
public void onClick(View view) { | |
TabView tabView = (TabView)view; | |
final int oldSelected = mViewPager.getCurrentItem(); | |
final int newSelected = tabView.getIndex(); | |
mViewPager.setCurrentItem(newSelected); | |
if (oldSelected == newSelected && mTabReselectedListener != null) { | |
mTabReselectedListener.onTabReselected(newSelected); | |
} | |
} | |
}; | |
private final IcsLinearLayout mTabLayout; | |
private ViewPager mViewPager; | |
private OnPageChangeListener mListener; | |
private int mMaxTabWidth; | |
private int mSelectedTabIndex; | |
private OnTabReselectedListener mTabReselectedListener; | |
public IconCenterPageIndicator(Context context) { | |
this(context, null); | |
} | |
public IconCenterPageIndicator(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
setHorizontalScrollBarEnabled(false); | |
mTabLayout = new IcsLinearLayout(context, R.attr.vpiTabPageIndicatorStyle); | |
addView(mTabLayout, new ViewGroup.LayoutParams(MATCH_PARENT, WRAP_CONTENT)); | |
} | |
public void setOnTabReselectedListener(OnTabReselectedListener listener) { | |
mTabReselectedListener = listener; | |
} | |
@Override | |
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { | |
final int widthMode = MeasureSpec.getMode(widthMeasureSpec); | |
final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY; | |
setFillViewport(lockedExpanded); | |
final int childCount = mTabLayout.getChildCount(); | |
if (childCount > 1 && (widthMode == MeasureSpec.EXACTLY || widthMode == MeasureSpec.AT_MOST)) { | |
if (childCount > 2) { | |
mMaxTabWidth = (int)(MeasureSpec.getSize(widthMeasureSpec) * 0.4f); | |
} else { | |
mMaxTabWidth = MeasureSpec.getSize(widthMeasureSpec) / 2; | |
} | |
} else { | |
mMaxTabWidth = -1; | |
} | |
final int oldWidth = getMeasuredWidth(); | |
super.onMeasure(widthMeasureSpec, heightMeasureSpec); | |
final int newWidth = getMeasuredWidth(); | |
if (lockedExpanded && oldWidth != newWidth) { | |
// Recenter the tab display if we're at a new (scrollable) size. | |
setCurrentItem(mSelectedTabIndex); | |
} | |
} | |
private void animateToTab(final int position) { | |
final View tabView = mTabLayout.getChildAt(position); | |
if (mTabSelector != null) { | |
removeCallbacks(mTabSelector); | |
} | |
mTabSelector = new Runnable() { | |
public void run() { | |
final int scrollPos = tabView.getLeft() - (getWidth() - tabView.getWidth()) / 2; | |
smoothScrollTo(scrollPos, 0); | |
mTabSelector = null; | |
} | |
}; | |
post(mTabSelector); | |
} | |
@Override | |
public void onAttachedToWindow() { | |
super.onAttachedToWindow(); | |
if (mTabSelector != null) { | |
// Re-post the selector we saved | |
post(mTabSelector); | |
} | |
} | |
@Override | |
public void onDetachedFromWindow() { | |
super.onDetachedFromWindow(); | |
if (mTabSelector != null) { | |
removeCallbacks(mTabSelector); | |
} | |
} | |
private void addTab(int index, int iconResId) { | |
final TabView tabView = new TabView(getContext()); | |
tabView.mIndex = index; | |
tabView.setFocusable(true); | |
tabView.setOnClickListener(mTabClickListener); | |
tabView.setImageResource(iconResId); | |
mTabLayout.addView(tabView, new LinearLayout.LayoutParams(0, MATCH_PARENT, 1)); | |
} | |
@Override | |
public void onPageScrollStateChanged(int arg0) { | |
if (mListener != null) { | |
mListener.onPageScrollStateChanged(arg0); | |
} | |
} | |
@Override | |
public void onPageScrolled(int arg0, float arg1, int arg2) { | |
if (mListener != null) { | |
mListener.onPageScrolled(arg0, arg1, arg2); | |
} | |
} | |
@Override | |
public void onPageSelected(int arg0) { | |
setCurrentItem(arg0); | |
if (mListener != null) { | |
mListener.onPageSelected(arg0); | |
} | |
} | |
@Override | |
public void setViewPager(ViewPager view) { | |
if (mViewPager == view) { | |
return; | |
} | |
if (mViewPager != null) { | |
mViewPager.setOnPageChangeListener(null); | |
} | |
final PagerAdapter adapter = view.getAdapter(); | |
if (adapter == null) { | |
throw new IllegalStateException("ViewPager does not have adapter instance."); | |
} | |
mViewPager = view; | |
view.setOnPageChangeListener(this); | |
notifyDataSetChanged(); | |
} | |
public void notifyDataSetChanged() { | |
mTabLayout.removeAllViews(); | |
PagerAdapter adapter = mViewPager.getAdapter(); | |
IconPagerAdapter iconAdapter = null; | |
if (adapter instanceof IconPagerAdapter) { | |
iconAdapter = (IconPagerAdapter)adapter; | |
} | |
final int count = adapter.getCount(); | |
for (int i = 0; i < count; i++) { | |
int iconResId = 0; | |
if (iconAdapter != null) { | |
iconResId = iconAdapter.getIconResId(i); | |
} | |
addTab(i, iconResId); | |
} | |
if (mSelectedTabIndex > count) { | |
mSelectedTabIndex = count - 1; | |
} | |
setCurrentItem(mSelectedTabIndex); | |
requestLayout(); | |
} | |
@Override | |
public void setViewPager(ViewPager view, int initialPosition) { | |
setViewPager(view); | |
setCurrentItem(initialPosition); | |
} | |
@Override | |
public void setCurrentItem(int item) { | |
if (mViewPager == null) { | |
throw new IllegalStateException("ViewPager has not been bound."); | |
} | |
mSelectedTabIndex = item; | |
mViewPager.setCurrentItem(item); | |
final int tabCount = mTabLayout.getChildCount(); | |
for (int i = 0; i < tabCount; i++) { | |
final View child = mTabLayout.getChildAt(i); | |
final boolean isSelected = (i == item); | |
child.setSelected(isSelected); | |
if (isSelected) { | |
animateToTab(item); | |
} | |
} | |
} | |
@Override | |
public void setOnPageChangeListener(OnPageChangeListener listener) { | |
mListener = listener; | |
} | |
private class TabView extends ImageView { | |
private int mIndex; | |
public TabView(Context context) { | |
super(context); | |
} | |
public int getIndex() { | |
return mIndex; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<com.viewpagerindicator.IconCenterPageIndicator | |
android:id="@+id/home_indicator" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:paddingTop="10dp" | |
android:paddingBottom="10dp" /> | |
<android.support.v4.view.ViewPager | |
android:id="@+id/home_pager" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
God bless you