com.bangqu.eshow.view.sliding.ESSlidingTabView.java Source code

Java tutorial

Introduction

Here is the source code for com.bangqu.eshow.view.sliding.ESSlidingTabView.java

Source

/*
 * Copyright (C) 2012 www.amsoft.cn
 * 
 * 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.bangqu.eshow.view.sliding;

import java.util.ArrayList;
import java.util.List;
import android.annotation.SuppressLint;
import android.app.Fragment;
import android.app.FragmentManager;
import android.content.Context;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Build.VERSION;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.HorizontalScrollView;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.bangqu.eshow.adapter.ESFragmentPagerAdapter;
import com.bangqu.eshow.util.ESLogUtil;
import com.bangqu.eshow.util.ESViewUtil;
import com.bangqu.eshow.view.sample.ESViewPager;

// TODO: Auto-generated Javadoc
/**
 * tab,tab???.
 *
 */
@SuppressLint("NewApi")
public class ESSlidingTabView extends LinearLayout {

    /** The context. */
    private Context context;

    /** The m tab selector. */
    private Runnable mTabSelector;

    /** The m listener. */
    private ViewPager.OnPageChangeListener mListener;

    /** The m max tab width. */
    public int mMaxTabWidth;

    /** The m selected tab index. */
    private int mSelectedTabIndex;

    /** tab. */
    private int tabBackgroundResource = -1;

    /** tab?. */
    private int tabTextSize = 30;

    /** tab. */
    private int tabTextColor = Color.BLACK;

    /** tab. */
    private int tabSelectColor = Color.BLACK;

    /** tab. */
    private LinearLayout mTabLayout = null;

    /** tab. */
    private HorizontalScrollView mTabScrollView = null;

    /** The m view pager. */
    private ESViewPager mViewPager;

    /** tab. */
    private List<String> tabItemTextList = null;

    /** tab. */
    private List<Drawable> tabItemDrawableList = null;

    /** View. */
    private ArrayList<Fragment> pagerItemList = null;

    /** tab. */
    private ArrayList<TextView> tabItemList = null;

    /** ?. */
    private ESFragmentPagerAdapter mFragmentPagerAdapter = null;

    /** The m tab click listener. */
    private OnClickListener mTabClickListener = new OnClickListener() {
        public void onClick(View view) {
            ESTabItemView tabView = (ESTabItemView) view;
            mViewPager.setCurrentItem(tabView.getIndex());
        }
    };

    /**
     * Instantiates a new ab sliding tab view.
     *
     * @param context the context
     */
    public ESSlidingTabView(Context context) {
        this(context, null);
    }

    /**
     * Instantiates a new ab sliding tab view.
     *
     * @param context the context
     * @param attrs the attrs
     */
    public ESSlidingTabView(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.context = context;
        initView();
        FragmentManager mFragmentManager = ((FragmentActivity) this.context).getFragmentManager();
        mFragmentPagerAdapter = new ESFragmentPagerAdapter(mFragmentManager, pagerItemList);
        mViewPager.setAdapter(mFragmentPagerAdapter);
        mViewPager.setOnPageChangeListener(new MyOnPageChangeListener());
        mViewPager.setOffscreenPageLimit(3);
        this.addView(mViewPager,
                new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));

    }

    /**
     * Fragment??xml
     * getChildFragmentManager?fragment?
     *
     * @param fragment the fragment
     */
    public ESSlidingTabView(Fragment fragment) {

        super(fragment.getActivity());

        this.context = fragment.getActivity();
        initView();
        if (VERSION.SDK_INT <= 17) {
            ESLogUtil.e(ESSlidingTabView.class, "AbSlidingTabView(Fragment fragment) ?SDK17");
            return;
        }
        FragmentManager mFragmentManager = fragment.getChildFragmentManager();
        mFragmentPagerAdapter = new ESFragmentPagerAdapter(mFragmentManager, pagerItemList);
        mViewPager.setAdapter(mFragmentPagerAdapter);
        mViewPager.setOnPageChangeListener(new MyOnPageChangeListener());
        mViewPager.setOffscreenPageLimit(3);

        this.addView(mViewPager,
                new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));

    }

    /**
     * Inits the view.
     */
    public void initView() {
        this.setOrientation(LinearLayout.VERTICAL);
        this.setBackgroundColor(Color.rgb(255, 255, 255));

        mTabScrollView = new HorizontalScrollView(context);
        mTabScrollView.setHorizontalScrollBarEnabled(false);
        mTabScrollView.setSmoothScrollingEnabled(true);

        mTabLayout = new LinearLayout(context);
        mTabLayout.setOrientation(LinearLayout.HORIZONTAL);
        mTabLayout.setGravity(Gravity.CENTER);

        //mTabLayout
        mTabScrollView.addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.FILL_PARENT));

        this.addView(mTabScrollView, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,
                ViewGroup.LayoutParams.WRAP_CONTENT));

        //View?
        mViewPager = new ESViewPager(context);
        //ViewPager,setId()id
        mViewPager.setId(1985);
        pagerItemList = new ArrayList<Fragment>();
        //Tab?
        tabItemList = new ArrayList<TextView>();
        tabItemTextList = new ArrayList<String>();
        tabItemDrawableList = new ArrayList<Drawable>();

        //?FragmentActivity
        if (!(this.context instanceof FragmentActivity)) {
            ESLogUtil.e(ESSlidingTabView.class,
                    "AbSlidingTabView?context,FragmentActivity");
        }
    }

    /**
     * The listener interface for receiving myOnPageChange events.
     * The class that is interested in processing a myOnPageChange
     * event implements this interface, and the object created
     * with that class is registered with a component using the
     * component's <code>addMyOnPageChangeListener<code> method. When
     * the myOnPageChange event occurs, that object's appropriate
     * method is invoked.
     *
     * @see MyOnPageChangeEvent
     */
    public class MyOnPageChangeListener implements OnPageChangeListener {

        /* (non-Javadoc)
         * @see android.support.v4.view.ViewPager.OnPageChangeListener#onPageScrollStateChanged(int)
         */
        @Override
        public void onPageScrollStateChanged(int arg0) {
            if (mListener != null) {
                mListener.onPageScrollStateChanged(arg0);
            }
        }

        /* (non-Javadoc)
         * @see android.support.v4.view.ViewPager.OnPageChangeListener#onPageScrolled(int, float, int)
         */
        @Override
        public void onPageScrolled(int arg0, float arg1, int arg2) {
            if (mListener != null) {
                mListener.onPageScrolled(arg0, arg1, arg2);
            }
        }

        /* (non-Javadoc)
         * @see android.support.v4.view.ViewPager.OnPageChangeListener#onPageSelected(int)
         */
        @Override
        public void onPageSelected(int arg0) {
            setCurrentItem(arg0);
            if (mListener != null) {
                mListener.onPageSelected(arg0);
            }
        }

    }

    /* (non-Javadoc)
     * @see android.widget.LinearLayout#onMeasure(int, int)
     */
    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
        final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY;
        mTabScrollView.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);
        }
    }

    /**
     * Animate to tab.
     *
     * @param position the position
     */
    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;
                mTabScrollView.smoothScrollTo(scrollPos, 0);
                mTabSelector = null;
            }
        };
        post(mTabSelector);
    }

    /* (non-Javadoc)
     * @see android.view.View#onAttachedToWindow()
     */
    @Override
    public void onAttachedToWindow() {
        super.onAttachedToWindow();
        if (mTabSelector != null) {
            // Re-post the selector we saved
            post(mTabSelector);
        }
    }

    /* (non-Javadoc)
     * @see android.view.View#onDetachedFromWindow()
     */
    @Override
    public void onDetachedFromWindow() {
        super.onDetachedFromWindow();
        if (mTabSelector != null) {
            removeCallbacks(mTabSelector);
        }
    }

    /**
     * ??Tab.
     *
     * @param text the text
     * @param index the index
     */
    private void addTab(String text, int index) {
        addTab(text, index, null);
    }

    /**
     * ??Tab.
     *
     * @param text the text
     * @param index the index
     * @param top the top
     */
    private void addTab(String text, int index, Drawable top) {

        ESTabItemView tabView = new ESTabItemView(this.context);
        if (tabBackgroundResource != -1) {
            tabView.setTabBackgroundResource(tabBackgroundResource);
        }
        if (top != null) {
            tabView.setTabCompoundDrawables(null, top, null, null);
        }
        tabView.setTabTextColor(tabTextColor);
        tabView.setTabTextSize(tabTextSize);

        tabView.init(index, text);
        tabItemList.add(tabView.getTextView());
        tabView.setOnClickListener(mTabClickListener);
        mTabLayout.addView(tabView, new LayoutParams(0, LayoutParams.MATCH_PARENT, 1));
    }

    /**
     * ??tab?.
     */
    public void notifyTabDataSetChanged() {
        mTabLayout.removeAllViews();
        tabItemList.clear();
        final int count = mFragmentPagerAdapter.getCount();
        for (int i = 0; i < count; i++) {
            if (tabItemDrawableList.size() > 0) {
                addTab(tabItemTextList.get(i), i, tabItemDrawableList.get(i));
            } else {
                addTab(tabItemTextList.get(i), i);
            }

        }
        if (mSelectedTabIndex > count) {
            mSelectedTabIndex = count - 1;
        }
        setCurrentItem(mSelectedTabIndex);
        requestLayout();
    }

    /**
     * ??.
     *
     * @param item the new current item
     */
    public void setCurrentItem(int item) {
        if (mViewPager == null) {
            throw new IllegalStateException("ViewPager has not been bound.");
        }
        mSelectedTabIndex = item;
        final int tabCount = mTabLayout.getChildCount();
        for (int i = 0; i < tabCount; i++) {
            final ESTabItemView child = (ESTabItemView) mTabLayout.getChildAt(i);
            final boolean isSelected = (i == item);
            child.setSelected(isSelected);
            if (isSelected) {
                child.setTabTextColor(tabSelectColor);
                animateToTab(item);
            } else {
                child.setTabTextColor(tabTextColor);
            }
        }
    }

    /**
     * ???.
     *
     * @param listener the new on page change listener
     */
    public void setOnPageChangeListener(ViewPager.OnPageChangeListener listener) {
        mListener = listener;
    }

    /**
     * ??tab.
     *
     * @param tabColor the new tab text color
     */
    public void setTabTextColor(int tabColor) {
        this.tabTextColor = tabColor;
    }

    /**
     * ??.
     *
     * @param tabColor the new tab select color
     */
    public void setTabSelectColor(int tabColor) {
        this.tabSelectColor = tabColor;
    }

    /**
     * ???.
     *
     * @param tabTextSize the new tab text size
     */
    public void setTabTextSize(int tabTextSize) {
        this.tabTextSize = tabTextSize;
    }

    /**
     * ???tab.
     *
     * @param resid the new tab background resource
     */
    public void setTabBackgroundResource(int resid) {
        tabBackgroundResource = resid;
    }

    /**
     * ??Tab.
     *
     * @param resid the new tab layout background resource
     */
    public void setTabLayoutBackgroundResource(int resid) {
        this.mTabLayout.setBackgroundResource(resid);
    }

    /**
     * ??tab.
     *
     * @param tabTexts the tab texts
     * @param fragments the fragments
     */
    public void addItemViews(List<String> tabTexts, List<Fragment> fragments) {

        tabItemTextList.addAll(tabTexts);
        pagerItemList.addAll(fragments);
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ??tab.
     *
     * @param tabTexts the tab texts
     * @param fragments the fragments
     * @param drawables the drawables
     */
    public void addItemViews(List<String> tabTexts, List<Fragment> fragments, List<Drawable> drawables) {

        tabItemTextList.addAll(tabTexts);
        pagerItemList.addAll(fragments);
        tabItemDrawableList.addAll(drawables);
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ??tab.
     *
     * @param tabText the tab text
     * @param fragment the fragment
     */
    public void addItemView(String tabText, Fragment fragment) {
        tabItemTextList.add(tabText);
        pagerItemList.add(fragment);
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ??tab.
     *
     * @param tabText the tab text
     * @param fragment the fragment
     * @param drawable the drawable
     */
    public void addItemView(String tabText, Fragment fragment, Drawable drawable) {
        tabItemTextList.add(tabText);
        pagerItemList.add(fragment);
        tabItemDrawableList.add(drawable);
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ???.
     *
     * @param index the index
     */
    public void removeItemView(int index) {

        mTabLayout.removeViewAt(index);
        pagerItemList.remove(index);
        tabItemList.remove(index);
        tabItemDrawableList.remove(index);
        tabItemTextList.remove(index);
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ??.
     */
    public void removeAllItemViews() {
        mTabLayout.removeAllViews();
        pagerItemList.clear();
        tabItemList.clear();
        tabItemDrawableList.clear();
        tabItemTextList.clear();
        mFragmentPagerAdapter.notifyDataSetChanged();
        notifyTabDataSetChanged();
    }

    /**
     * ???ViewViewPager.
     *
     * @return the view pager
     */
    public ViewPager getViewPager() {
        return mViewPager;
    }

    /**
     * ???tab?.
     *
     * @param left the left
     * @param top the top
     * @param right the right
     * @param bottom the bottom
     */
    public void setTabPadding(int left, int top, int right, int bottom) {
        for (int i = 0; i < tabItemList.size(); i++) {
            TextView tv = tabItemList.get(i);

            ESViewUtil.setPadding(tv, left, top, right, bottom);
        }
    }

    /**
     * Sets the sliding enabled.
     *
     * @param sliding the new sliding enabled
     */
    public void setSlidingEnabled(boolean sliding) {
        mViewPager.setPagingEnabled(sliding);
    }

}