〔文章原始地址 http://blog.csdn.net/manoel/article/details/39013095〕
最近项目要做一个QQ5.0的侧滑菜单效果,和传统的侧滑菜单存在着一些差异。想必大家都已经见识过了。
为了不重复发明轮子,先去github上面搜索了一番。
发现了几个类似的,但是还是有一些不同。
下面是搜索到的类似的开源项目。
RESideMenu(ios项目)
https://github.com/romaonthego/RESideMenu
AndroidResideMenu
https://github.com/SpecialCyCi/AndroidResideMenu
ResideLayout
https://github.com/kyze8439690/ResideLayout
研究了一下这些开源项目的源代码。感觉并不是特别适用于我们自己的项目。所以,我自己又研究了一下。最后的效果如下。当然了,还有很多可以优化的地方,后续再慢慢优化。
备注:如果图片动画显示不出来,可以点击这个网址查看。
http://img.blog.csdn.net/20140902225149282?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvbWFub2Vs/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast
我是基于SlidingMenu库进行的二次修改,增加了一些转场动画。
大家对这个库应该比较熟悉,下面是SlidingMenu的github地址。非常感谢Jeremy Feinstein提供的这个库,让广大Android Developers省去了非常多的麻烦。
https://github.com/jfeinstein10/SlidingMenu
备注:SlidingMenu使用了SherlockActionBar这个库,配置起来会比较麻烦,在文章的最后我会把demo上传,供大家下载,减去了大家自己配置项目的麻烦。
我主要修改了2个类,SlidingMenu.java和CustonViewAbove.java,只是增加了一些功能,并没有修改原本的功能。
做了修改的地方,我做了中文注释,其实实现很简单,几行代码而已。推荐大家下载Demo,然后自己调试一下。Demo的下载地址在文章的末尾。
废话不多说,直接上代码,略微有点长。
- public class SlidingMenu extends RelativeLayout {
-
- private static final String TAG = SlidingMenu.class.getSimpleName();
-
- public static final int SLIDING_WINDOW = 0;
- public static final int SLIDING_CONTENT = 1;
- private boolean mActionbarOverlay = false;
-
-
-
-
-
- public static final int TOUCHMODE_MARGIN = 0;
-
-
-
-
-
- public static final int TOUCHMODE_FULLSCREEN = 1;
-
-
-
-
-
- public static final int TOUCHMODE_NONE = 2;
-
-
-
-
-
- public static final int LEFT = 0;
-
-
-
-
-
- public static final int RIGHT = 1;
-
-
-
-
-
- public static final int LEFT_RIGHT = 2;
-
- private CustomViewAbove mViewAbove;
-
- private CustomViewBehind mViewBehind;
-
-
- private ImageView mViewBackground;
-
- private OnOpenListener mOpenListener;
-
- private OnOpenListener mSecondaryOpenListner;
-
- private OnCloseListener mCloseListener;
-
-
-
-
-
-
-
-
-
- public interface OnOpenListener {
-
-
-
-
- public void onOpen();
- }
-
-
-
-
-
-
-
-
-
-
-
- public interface OnOpenedListener {
-
-
-
-
- public void onOpened();
- }
-
-
-
-
-
-
-
-
-
-
-
- public interface OnCloseListener {
-
-
-
-
- public void onClose();
- }
-
-
-
-
-
-
-
-
-
-
-
- public interface OnClosedListener {
-
-
-
-
- public void onClosed();
- }
-
-
-
-
- public interface CanvasTransformer {
-
-
-
-
-
-
-
-
-
- public void transformCanvas(Canvas canvas, float percentOpen);
- }
-
-
-
-
-
-
-
- public SlidingMenu(Context context) {
- this(context, null);
- }
-
-
-
-
-
-
-
-
-
- public SlidingMenu(Activity activity, int slideStyle) {
- this(activity, null);
- this.attachToActivity(activity, slideStyle);
- }
-
-
-
-
-
-
-
-
-
- public SlidingMenu(Context context, AttributeSet attrs) {
- this(context, attrs, 0);
- }
-
-
-
-
-
-
-
-
-
-
-
- public SlidingMenu(Context context, AttributeSet attrs, int defStyle) {
- super(context, attrs, defStyle);
-
- LayoutParams backgroundParams = new LayoutParams(
- LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
- mViewBackground = new ImageView(context);
- mViewBackground.setScaleType(ImageView.ScaleType.CENTER_CROP);
- addView(mViewBackground, backgroundParams);
-
- LayoutParams behindParams = new LayoutParams(LayoutParams.MATCH_PARENT,
- LayoutParams.MATCH_PARENT);
- mViewBehind = new CustomViewBehind(context);
- addView(mViewBehind, behindParams);
- LayoutParams aboveParams = new LayoutParams(LayoutParams.MATCH_PARENT,
- LayoutParams.MATCH_PARENT);
- mViewAbove = new CustomViewAbove(context);
- addView(mViewAbove, aboveParams);
-
- mViewAbove.setCustomViewBehind(mViewBehind);
- mViewBehind.setCustomViewAbove(mViewAbove);
- mViewAbove.setOnPageChangeListener(new OnPageChangeListener() {
- public static final int POSITION_OPEN = 0;
- public static final int POSITION_CLOSE = 1;
- public static final int POSITION_SECONDARY_OPEN = 2;
-
- public void onPageScrolled(int position, float positionOffset,
- int positionOffsetPixels) {
- }
-
- public void onPageSelected(int position) {
- if (position == POSITION_OPEN && mOpenListener != null) {
- mOpenListener.onOpen();
- } else if (position == POSITION_CLOSE && mCloseListener != null) {
- mCloseListener.onClose();
- } else if (position == POSITION_SECONDARY_OPEN
- && mSecondaryOpenListner != null) {
- mSecondaryOpenListner.onOpen();
- }
- }
- });
-
-
- TypedArray ta = context.obtainStyledAttributes(attrs,
- R.styleable.SlidingMenu);
-
- int mode = ta.getInt(R.styleable.SlidingMenu_mode, LEFT);
- setMode(mode);
- int viewAbove = ta.getResourceId(R.styleable.SlidingMenu_viewAbove, -1);
- if (viewAbove != -1) {
- setContent(viewAbove);
- } else {
- setContent(new FrameLayout(context));
- }
- int viewBehind = ta.getResourceId(R.styleable.SlidingMenu_viewBehind,
- -1);
- if (viewBehind != -1) {
- setMenu(viewBehind);
- } else {
- setMenu(new FrameLayout(context));
- }
- int touchModeAbove = ta.getInt(R.styleable.SlidingMenu_touchModeAbove,
- TOUCHMODE_MARGIN);
- setTouchModeAbove(touchModeAbove);
- int touchModeBehind = ta.getInt(
- R.styleable.SlidingMenu_touchModeBehind, TOUCHMODE_MARGIN);
- setTouchModeBehind(touchModeBehind);
-
- int offsetBehind = (int) ta.getDimension(
- R.styleable.SlidingMenu_behindOffset, -1);
- int widthBehind = (int) ta.getDimension(
- R.styleable.SlidingMenu_behindWidth, -1);
- if (offsetBehind != -1 && widthBehind != -1)
- throw new IllegalStateException(
- "Cannot set both behindOffset and behindWidth for a SlidingMenu");
- else if (offsetBehind != -1)
- setBehindOffset(offsetBehind);
- else if (widthBehind != -1)
- setBehindWidth(widthBehind);
- else
- setBehindOffset(0);
- float scrollOffsetBehind = ta.getFloat(
- R.styleable.SlidingMenu_behindScrollScale, 0.33f);
- setBehindScrollScale(scrollOffsetBehind);
- int shadowRes = ta.getResourceId(
- R.styleable.SlidingMenu_shadowDrawable, -1);
- if (shadowRes != -1) {
- setShadowDrawable(shadowRes);
- }
- int shadowWidth = (int) ta.getDimension(
- R.styleable.SlidingMenu_shadowWidth, 0);
- setShadowWidth(shadowWidth);
- boolean fadeEnabled = ta.getBoolean(
- R.styleable.SlidingMenu_fadeEnabled, true);
- setFadeEnabled(fadeEnabled);
- float fadeDeg = ta.getFloat(R.styleable.SlidingMenu_fadeDegree, 0.33f);
- setFadeDegree(fadeDeg);
- boolean selectorEnabled = ta.getBoolean(
- R.styleable.SlidingMenu_selectorEnabled, false);
- setSelectorEnabled(selectorEnabled);
- int selectorRes = ta.getResourceId(
- R.styleable.SlidingMenu_selectorDrawable, -1);
- if (selectorRes != -1)
- setSelectorDrawable(selectorRes);
- ta.recycle();
- }
-
-
-
-
-
-
-
-
-
- public void attachToActivity(Activity activity, int slideStyle) {
- attachToActivity(activity, slideStyle, false);
- }
-
-
-
-
-
-
-
-
-
-
-
- public void attachToActivity(Activity activity, int slideStyle,
- boolean actionbarOverlay) {
- if (slideStyle != SLIDING_WINDOW && slideStyle != SLIDING_CONTENT)
- throw new IllegalArgumentException(
- "slideStyle must be either SLIDING_WINDOW or SLIDING_CONTENT");
-
- if (getParent() != null)
- throw new IllegalStateException(
- "This SlidingMenu appears to already be attached");
-
-
- TypedArray a = activity.getTheme().obtainStyledAttributes(
- new int[] { android.R.attr.windowBackground });
- int background = a.getResourceId(0, 0);
- a.recycle();
-
- switch (slideStyle) {
- case SLIDING_WINDOW:
- mActionbarOverlay = false;
- ViewGroup decor = (ViewGroup) activity.getWindow().getDecorView();
- ViewGroup decorChild = (ViewGroup) decor.getChildAt(0);
-
- decorChild.setBackgroundResource(background);
- decor.removeView(decorChild);
- decor.addView(this);
- setContent(decorChild);
- break;
- case SLIDING_CONTENT:
- mActionbarOverlay = actionbarOverlay;
-
- ViewGroup contentParent = (ViewGroup) activity
- .findViewById(android.R.id.content);
- View content = contentParent.getChildAt(0);
- contentParent.removeView(content);
- contentParent.addView(this);
- setContent(content);
-
- if (content.getBackground() == null)
- content.setBackgroundResource(background);
- break;
- }
- }
-
-
-
-
-
-
-
-
- public void setContent(int res) {
- setContent(LayoutInflater.from(getContext()).inflate(res, null));
- }
-
-
-
-
-
-
-
- public void setContent(View view) {
- mViewAbove.setContent(view);
- showContent();
- }
-
-
-
-
-
-
- public void setBackgroundImage(int resid) {
- mViewBackground.setBackgroundResource(resid);
- }
-
-
-
-
-
-
- public View getContent() {
- return mViewAbove.getContent();
- }
-
-
-
-
-
-
-
-
- public void setMenu(int res) {
- setMenu(LayoutInflater.from(getContext()).inflate(res, null));
- }
-
-
-
-
-
-
-
- public void setMenu(View v) {
- mViewBehind.setContent(v);
- }
-
-
-
-
-
-
- public View getMenu() {
- return mViewBehind.getContent();
- }
-
-
-
-
-
-
-
-
-
- public void setSecondaryMenu(int res) {
- setSecondaryMenu(LayoutInflater.from(getContext()).inflate(res, null));
- }
-
-
-
-
-
-
-
- public void setSecondaryMenu(View v) {
- mViewBehind.setSecondaryContent(v);
-
- }
-
-
-
-
-
-
- public View getSecondaryMenu() {
- return mViewBehind.getSecondaryContent();
- }
-
-
-
-
-
-
-
- public void setSlidingEnabled(boolean b) {
- mViewAbove.setSlidingEnabled(b);
- }
-
-
-
-
-
-
- public boolean isSlidingEnabled() {
- return mViewAbove.isSlidingEnabled();
- }
-
-
-
-
-
-
-
- public void setMode(int mode) {
- if (mode != LEFT && mode != RIGHT && mode != LEFT_RIGHT) {
- throw new IllegalStateException(
- "SlidingMenu mode must be LEFT, RIGHT, or LEFT_RIGHT");
- }
- mViewBehind.setMode(mode);
- }
-
-
-
-
-
-
- public int getMode() {
- return mViewBehind.getMode();
- }
-
-
-
-
-
-
-
-
- public void setStatic(boolean b) {
- if (b) {
- setSlidingEnabled(false);
- mViewAbove.setCustomViewBehind(null);
- mViewAbove.setCurrentItem(1);
-
- } else {
- mViewAbove.setCurrentItem(1);
-
- mViewAbove.setCustomViewBehind(mViewBehind);
- setSlidingEnabled(true);
- }
- }
-
-
-
-
- public void showMenu() {
- showMenu(true);
- }
-
-
-
-
-
-
-
- public void showMenu(boolean animate) {
- mViewAbove.setCurrentItem(0, animate);
- }
-
-
-
-
-
- public void showSecondaryMenu() {
- showSecondaryMenu(true);
- }
-
-
-
-
-
-
-
-
- public void showSecondaryMenu(boolean animate) {
- mViewAbove.setCurrentItem(2, animate);
- }
-
-
-
-
- public void showContent() {
- showContent(true);
- }
-
-
-
-
-
-
-
- public void showContent(boolean animate) {
- mViewAbove.setCurrentItem(1, animate);
- }
-
-
-
-
- public void toggle() {
- toggle(true);
- }
-
-
-
-
-
-
-
- public void toggle(boolean animate) {
- if (isMenuShowing()) {
- showContent(animate);
- } else {
- showMenu(animate);
- }
- }
-
-
-
-
-
-
- public boolean isMenuShowing() {
- return mViewAbove.getCurrentItem() == 0
- || mViewAbove.getCurrentItem() == 2;
- }
-
-
-
-
-
-
- public boolean isSecondaryMenuShowing() {
- return mViewAbove.getCurrentItem() == 2;
- }
-
-
-
-
-
-
-
- public int getBehindOffset() {
- return ((RelativeLayout.LayoutParams) mViewBehind.getLayoutParams()).rightMargin;
- }
-
-
-
-
-
-
-
-
- public void setBehindOffset(int i) {
-
-
-
-
-
-
- mViewBehind.setWidthOffset(i);
- }
-
-
-
-
-
-
-
-
-
- public void setBehindOffsetRes(int resID) {
- int i = (int) getContext().getResources().getDimension(resID);
- setBehindOffset(i);
- }
-
-
-
-
-
-
-
- public void setAboveOffset(int i) {
- mViewAbove.setAboveOffset(i);
- }
-
-
-
-
-
-
-
- public void setAboveOffsetRes(int resID) {
- int i = (int) getContext().getResources().getDimension(resID);
- setAboveOffset(i);
- }
-
-
-
-
-
-
-
- @SuppressWarnings("deprecation")
- public void setBehindWidth(int i) {
- int width;
- Display display = ((WindowManager) getContext().getSystemService(
- Context.WINDOW_SERVICE)).getDefaultDisplay();
- try {
- Class<?> cls = Display.class;
- Class<?>[] parameterTypes = { Point.class };
- Point parameter = new Point();
- Method method = cls.getMethod("getSize", parameterTypes);
- method.invoke(display, parameter);
- width = parameter.x;
- } catch (Exception e) {
- width = display.getWidth();
- }
- setBehindOffset(width - i);
- }
-
-
-
-
-
-
-
-
- public void setBehindWidthRes(int res) {
- int i = (int) getContext().getResources().getDimension(res);
- setBehindWidth(i);
- }
-
-
-
-
-
-
- public float getBehindScrollScale() {
- return mViewBehind.getScrollScale();
- }
-
-
-
-
-
-
- public int getTouchmodeMarginThreshold() {
- return mViewBehind.getMarginThreshold();
- }
-
-
-
-
-
-
- public void setTouchmodeMarginThreshold(int touchmodeMarginThreshold) {
- mViewBehind.setMarginThreshold(touchmodeMarginThreshold);
- }
-
-
-
-
-
-
-
-
-
- public void setBehindScrollScale(float f) {
- if (f < 0 && f > 1)
- throw new IllegalStateException(
- "ScrollScale must be between 0 and 1");
- mViewBehind.setScrollScale(f);
- }
-
-
-
-
-
-
-
- public void setBehindCanvasTransformer(CanvasTransformer t) {
- mViewBehind.setCanvasTransformer(t);
- }
-
-
-
-
-
-
-
- public void setAboveCanvasTransformer(CanvasTransformer t) {
- mViewAbove.setCanvasTransformer(t);
- }
-
-
-
-
-
-
- public int getTouchModeAbove() {
- return mViewAbove.getTouchMode();
- }
-
-
-
-
-
-
-
-
-
-
- public void setTouchModeAbove(int i) {
- if (i != TOUCHMODE_FULLSCREEN && i != TOUCHMODE_MARGIN
- && i != TOUCHMODE_NONE) {
- throw new IllegalStateException(
- "TouchMode must be set to either"
- + "TOUCHMODE_FULLSCREEN or TOUCHMODE_MARGIN or TOUCHMODE_NONE.");
- }
- mViewAbove.setTouchMode(i);
- }
-
-
-
-
-
-
-
-
-
-
- public void setTouchModeBehind(int i) {
- if (i != TOUCHMODE_FULLSCREEN && i != TOUCHMODE_MARGIN
- && i != TOUCHMODE_NONE) {
- throw new IllegalStateException(
- "TouchMode must be set to either"
- + "TOUCHMODE_FULLSCREEN or TOUCHMODE_MARGIN or TOUCHMODE_NONE.");
- }
- mViewBehind.setTouchMode(i);
- }
-
-
-
-
-
-
-
- public void setShadowDrawable(int resId) {
- setShadowDrawable(getContext().getResources().getDrawable(resId));
- }
-
-
-
-
-
-
-
- public void setShadowDrawable(Drawable d) {
- mViewBehind.setShadowDrawable(d);
- }
-
-
-
-
-
-
-
- public void setSecondaryShadowDrawable(int resId) {
- setSecondaryShadowDrawable(getContext().getResources().getDrawable(
- resId));
- }
-
-
-
-
-
-
-
- public void setSecondaryShadowDrawable(Drawable d) {
- mViewBehind.setSecondaryShadowDrawable(d);
- }
-
-
-
-
-
-
-
- public void setShadowWidthRes(int resId) {
- setShadowWidth((int) getResources().getDimension(resId));
- }
-
-
-
-
-
-
-
- public void setShadowWidth(int pixels) {
- mViewBehind.setShadowWidth(pixels);
- }
-
-
-
-
-
-
-
- public void setFadeEnabled(boolean b) {
- mViewBehind.setFadeEnabled(b);
- }
-
-
-
-
-
-
-
-
- public void setFadeDegree(float f) {
- mViewBehind.setFadeDegree(f);
- }
-
-
-
-
-
-
-
- public void setSelectorEnabled(boolean b) {
- mViewBehind.setSelectorEnabled(true);
- }
-
-
-
-
-
-
-
- public void setSelectedView(View v) {
- mViewBehind.setSelectedView(v);
- }
-
-
-
-
-
-
-
- public void setSelectorDrawable(int res) {
- mViewBehind.setSelectorBitmap(BitmapFactory.decodeResource(
- getResources(), res));
- }
-
-
-
-
-
-
-
- public void setSelectorBitmap(Bitmap b) {
- mViewBehind.setSelectorBitmap(b);
- }
-
-
-
-
-
-
-
- public void addIgnoredView(View v) {
- mViewAbove.addIgnoredView(v);
- }
-
-
-
-
-
-
-
- public void removeIgnoredView(View v) {
- mViewAbove.removeIgnoredView(v);
- }
-
-
-
-
-
- public void clearIgnoredViews() {
- mViewAbove.clearIgnoredViews();
- }
-
-
-
-
-
-
-
-
- public void setOnOpenListener(OnOpenListener listener) {
-
- mOpenListener = listener;
- }
-
-
-
-
-
-
-
-
-
-
- public void setSecondaryOnOpenListner(OnOpenListener listener) {
- mSecondaryOpenListner = listener;
- }
-
-
-
-
-
-
-
-
-
- public void setOnCloseListener(OnCloseListener listener) {
-
- mCloseListener = listener;
- }
-
-
-
-
-
-
-
-
-
- public void setOnOpenedListener(OnOpenedListener listener) {
- mViewAbove.setOnOpenedListener(listener);
- }
-
-
-
-
-
-
-
-
-
- public void setOnClosedListener(OnClosedListener listener) {
- mViewAbove.setOnClosedListener(listener);
- }
-
- public static class SavedState extends BaseSavedState {
-
- private final int mItem;
-
- public SavedState(Parcelable superState, int item) {
- super(superState);
- mItem = item;
- }
-
- private SavedState(Parcel in) {
- super(in);
- mItem = in.readInt();
- }
-
- public int getItem() {
- return mItem;
- }
-
-
-
-
-
-
- public void writeToParcel(Parcel out, int flags) {
- super.writeToParcel(out, flags);
- out.writeInt(mItem);
- }
-
- public static final Parcelable.Creator<SavedState> CREATOR = new Parcelable.Creator<SavedState>() {
- public SavedState createFromParcel(Parcel in) {
- return new SavedState(in);
- }
-
- public SavedState[] newArray(int size) {
- return new SavedState[size];
- }
- };
-
- }
-
-
-
-
-
-
- @Override
- protected Parcelable onSaveInstanceState() {
- Parcelable superState = super.onSaveInstanceState();
- SavedState ss = new SavedState(superState, mViewAbove.getCurrentItem());
- return ss;
- }
-
-
-
-
-
-
- @Override
- protected void onRestoreInstanceState(Parcelable state) {
- SavedState ss = (SavedState) state;
- super.onRestoreInstanceState(ss.getSuperState());
- mViewAbove.setCurrentItem(ss.getItem());
- }
-
-
-
-
-
-
- @SuppressLint("NewApi")
- @Override
- protected boolean fitSystemWindows(Rect insets) {
- int leftPadding = insets.left;
- int rightPadding = insets.right;
- int topPadding = insets.top;
- int bottomPadding = insets.bottom;
- if (!mActionbarOverlay) {
- Log.v(TAG, "setting padding!");
- setPadding(leftPadding, topPadding, rightPadding, bottomPadding);
- }
- return true;
- }
-
- @TargetApi(Build.VERSION_CODES.HONEYCOMB)
- public void manageLayers(float percentOpen) {
- if (Build.VERSION.SDK_INT < 11)
- return;
-
- boolean layer = percentOpen > 0.0f && percentOpen < 1.0f;
- final int layerType = layer ? View.LAYER_TYPE_HARDWARE
- : View.LAYER_TYPE_NONE;
-
- if (layerType != getContent().getLayerType()) {
- getHandler().post(new Runnable() {
- public void run() {
- Log.v(TAG, "changing layerType. hardware? "
- + (layerType == View.LAYER_TYPE_HARDWARE));
- getContent().setLayerType(layerType, null);
- getMenu().setLayerType(layerType, null);
- if (getSecondaryMenu() != null) {
- getSecondaryMenu().setLayerType(layerType, null);
- }
- }
- });
- }
- }
-
- }
- public class CustomViewAbove extends ViewGroup {
-
- private static final String TAG = "CustomViewAbove";
- private static final boolean DEBUG = false;
-
- private static final boolean USE_CACHE = false;
-
- private static final int MAX_SETTLE_DURATION = 600;
- private static final int MIN_DISTANCE_FOR_FLING = 25;
-
- private static final Interpolator sInterpolator = new Interpolator() {
- public float getInterpolation(float t) {
- t -= 1.0f;
- return t * t * t * t * t + 1.0f;
- }
- };
-
- private View mContent;
-
- private int mCurItem;
- private Scroller mScroller;
-
- private boolean mScrollingCacheEnabled;
-
- private boolean mScrolling;
-
- private boolean mIsBeingDragged;
- private boolean mIsUnableToDrag;
- private int mTouchSlop;
- private float mInitialMotionX;
-
-
-
- private float mLastMotionX;
- private float mLastMotionY;
-
-
-
-
- protected int mActivePointerId = INVALID_POINTER;
-
-
-
-
- private static final int INVALID_POINTER = -1;
-
- private CanvasTransformer mTransformer;
-
-
-
-
- protected VelocityTracker mVelocityTracker;
- private int mMinimumVelocity;
- protected int mMaximumVelocity;
- private int mFlingDistance;
-
- private CustomViewBehind mViewBehind;
-
- private boolean mEnabled = true;
-
- private OnPageChangeListener mOnPageChangeListener;
- private OnPageChangeListener mInternalPageChangeListener;
-
-
-
- private OnClosedListener mClosedListener;
- private OnOpenedListener mOpenedListener;
-
- private List<View> mIgnoredViews = new ArrayList<View>();
-
-
-
-
-
-
- public interface OnPageChangeListener {
-
-
-
-
-
-
-
-
-
-
- public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels);
-
-
-
-
-
-
-
- public void onPageSelected(int position);
-
- }
-
-
-
-
-
-
- public static class SimpleOnPageChangeListener implements OnPageChangeListener {
-
- public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
-
- }
-
- public void onPageSelected(int position) {
-
- }
-
- public void onPageScrollStateChanged(int state) {
-
- }
-
- }
-
- public CustomViewAbove(Context context) {
- this(context, null);
- }
-
- public CustomViewAbove(Context context, AttributeSet attrs) {
- super(context, attrs);
- initCustomViewAbove();
- }
-
- void initCustomViewAbove() {
- setWillNotDraw(false);
- setDescendantFocusability(FOCUS_AFTER_DESCENDANTS);
- setFocusable(true);
- final Context context = getContext();
- mScroller = new Scroller(context, sInterpolator);
- final ViewConfiguration configuration = ViewConfiguration.get(context);
- mTouchSlop = ViewConfigurationCompat.getScaledPagingTouchSlop(configuration);
- mMinimumVelocity = configuration.getScaledMinimumFlingVelocity();
- mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
- setInternalPageChangeListener(new SimpleOnPageChangeListener() {
- public void onPageSelected(int position) {
- if (mViewBehind != null) {
- switch (position) {
- case 0:
- case 2:
- mViewBehind.setChildrenEnabled(true);
- break;
- case 1:
- mViewBehind.setChildrenEnabled(false);
- break;
- }
- }
- }
- });
-
- final float density = context.getResources().getDisplayMetrics().density;
- mFlingDistance = (int) (MIN_DISTANCE_FOR_FLING * density);
- }
-
-
-
-
-
-
-
-
- public void setCurrentItem(int item) {
- setCurrentItemInternal(item, true, false);
- }
-
-
-
-
-
-
-
- public void setCurrentItem(int item, boolean smoothScroll) {
- setCurrentItemInternal(item, smoothScroll, false);
- }
-
- public int getCurrentItem() {
- return mCurItem;
- }
-
- void setCurrentItemInternal(int item, boolean smoothScroll, boolean always) {
- setCurrentItemInternal(item, smoothScroll, always, 0);
- }
-
- void setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) {
- if (!always && mCurItem == item) {
- setScrollingCacheEnabled(false);
- return;
- }
-
- item = mViewBehind.getMenuPage(item);
-
- final boolean dispatchSelected = mCurItem != item;
- mCurItem = item;
- final int destX = getDestScrollX(mCurItem);
- if (dispatchSelected && mOnPageChangeListener != null) {
- mOnPageChangeListener.onPageSelected(item);
- }
- if (dispatchSelected && mInternalPageChangeListener != null) {
- mInternalPageChangeListener.onPageSelected(item);
- }
- if (smoothScroll) {
- smoothScrollTo(destX, 0, velocity);
- } else {
- completeScroll();
- scrollTo(destX, 0);
- }
- }
-
-
-
-
-
-
-
- public void setOnPageChangeListener(OnPageChangeListener listener) {
- mOnPageChangeListener = listener;
- }
-
-
-
-
-
-
-
-
-
- public void setOnOpenedListener(OnOpenedListener l) {
- mOpenedListener = l;
- }
-
- public void setOnClosedListener(OnClosedListener l) {
- mClosedListener = l;
- }
-
-
-
-
-
-
-
- OnPageChangeListener setInternalPageChangeListener(OnPageChangeListener listener) {
- OnPageChangeListener oldListener = mInternalPageChangeListener;
- mInternalPageChangeListener = listener;
- return oldListener;
- }
-
- public void addIgnoredView(View v) {
- if (!mIgnoredViews.contains(v)) {
- mIgnoredViews.add(v);
- }
- }
-
- public void removeIgnoredView(View v) {
- mIgnoredViews.remove(v);
- }
-
- public void clearIgnoredViews() {
- mIgnoredViews.clear();
- }
-
-
-
-
-
- float distanceInfluenceForSnapDuration(float f) {
- f -= 0.5f;
- f *= 0.3f * Math.PI / 2.0f;
- return (float) FloatMath.sin(f);
- }
-
- public int getDestScrollX(int page) {
- switch (page) {
- case 0:
- case 2:
- return mViewBehind.getMenuLeft(mContent, page);
- case 1:
- return mContent.getLeft();
- }
- return 0;
- }
-
- private int getLeftBound() {
- return mViewBehind.getAbsLeftBound(mContent);
- }
-
- private int getRightBound() {
- return mViewBehind.getAbsRightBound(mContent);
- }
-
- public int getContentLeft() {
- return mContent.getLeft() + mContent.getPaddingLeft();
- }
-
- public boolean isMenuOpen() {
- return mCurItem == 0 || mCurItem == 2;
- }
-
- private boolean isInIgnoredView(MotionEvent ev) {
- Rect rect = new Rect();
- for (View v : mIgnoredViews) {
- v.getHitRect(rect);
- if (rect.contains((int)ev.getX(), (int)ev.getY())) return true;
- }
- return false;
- }
-
- public int getBehindWidth() {
- if (mViewBehind == null) {
- return 0;
- } else {
- return mViewBehind.getBehindWidth();
- }
- }
-
- public int getChildWidth(int i) {
- switch (i) {
- case 0:
- return getBehindWidth();
- case 1:
- return mContent.getWidth();
- default:
- return 0;
- }
- }
-
- public boolean isSlidingEnabled() {
- return mEnabled;
- }
-
- public void setSlidingEnabled(boolean b) {
- mEnabled = b;
- }
-
-
-
-
-
-
-
- void smoothScrollTo(int x, int y) {
- smoothScrollTo(x, y, 0);
- }
-
-
-
-
-
-
-
-
- void smoothScrollTo(int x, int y, int velocity) {
- if (getChildCount() == 0) {
-
- setScrollingCacheEnabled(false);
- return;
- }
- int sx = getScrollX();
- int sy = getScrollY();
- int dx = x - sx;
- int dy = y - sy;
- if (dx == 0 && dy == 0) {
- completeScroll();
- if (isMenuOpen()) {
- if (mOpenedListener != null)
- mOpenedListener.onOpened();
- } else {
- if (mClosedListener != null)
- mClosedListener.onClosed();
- }
- return;
- }
-
- setScrollingCacheEnabled(true);
- mScrolling = true;
-
- final int width = getBehindWidth();
- final int halfWidth = width / 2;
- final float distanceRatio = Math.min(1f, 1.0f * Math.abs(dx) / width);
- final float distance = halfWidth + halfWidth *
- distanceInfluenceForSnapDuration(distanceRatio);
-
- int duration = 0;
- velocity = Math.abs(velocity);
- if (velocity > 0) {
- duration = 4 * Math.round(1000 * Math.abs(distance / velocity));
- } else {
- final float pageDelta = (float) Math.abs(dx) / width;
- duration = (int) ((pageDelta + 1) * 100);
- duration = MAX_SETTLE_DURATION;
- }
- duration = Math.min(duration, MAX_SETTLE_DURATION);
-
- mScroller.startScroll(sx, sy, dx, dy, duration);
- invalidate();
- }
-
- public void setContent(View v) {
- if (mContent != null)
- this.removeView(mContent);
- mContent = v;
- addView(mContent);
- }
-
- public View getContent() {
- return mContent;
- }
-
- public void setCustomViewBehind(CustomViewBehind cvb) {
- mViewBehind = cvb;
- }
-
- @Override
- protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
-
- int width = getDefaultSize(0, widthMeasureSpec);
- int height = getDefaultSize(0, heightMeasureSpec);
- setMeasuredDimension(width, height);
-
- final int contentWidth = getChildMeasureSpec(widthMeasureSpec, 0, width);
- final int contentHeight = getChildMeasureSpec(heightMeasureSpec, 0, height);
- mContent.measure(contentWidth, contentHeight);
- }
-
- @Override
- protected void onSizeChanged(int w, int h, int oldw, int oldh) {
- super.onSizeChanged(w, h, oldw, oldh);
-
- if (w != oldw) {
-
-