summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/audiofx/preset/InfiniteViewPager.java
blob: 26e67f3e891332e51494e753c8d693d038ced6b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
 * Copyright (C) 2016 The CyanogenMod Project
 *
 * 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 org.cyanogenmod.audiofx.preset;

import android.content.Context;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.MotionEvent;

import org.cyanogenmod.audiofx.R;
import org.cyanogenmod.audiofx.activity.EqualizerManager;
import org.cyanogenmod.audiofx.activity.MasterConfigControl;

/**
 * A {@link ViewPager} that allows pseudo-infinite paging with a wrap-around effect. Should be used with an {@link
 * InfinitePagerAdapter}.
 */
public class InfiniteViewPager extends ViewPager {

    private final EqualizerManager mEqManager;

    @Override
    public boolean hasOverlappingRendering() {
        return false;
    }

    public InfiniteViewPager(Context context) {
        super(context);
        mEqManager = MasterConfigControl.getInstance(context).getEqualizerManager();
    }

    public InfiniteViewPager(Context context, AttributeSet attrs) {
        super(context, attrs);
        mEqManager = MasterConfigControl.getInstance(context).getEqualizerManager();
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        if (mEqManager.isAnimatingToCustom()) {
            return false;
        }
        return super.onInterceptTouchEvent(ev);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int textSize = getResources().getDimensionPixelSize(R.dimen.preset_text_size)
                + getResources().getDimensionPixelSize(R.dimen.preset_text_padding);
        super.onMeasure(widthMeasureSpec,
                MeasureSpec.makeMeasureSpec(textSize, MeasureSpec.EXACTLY));
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        if (mEqManager.isAnimatingToCustom()) {
            return false;
        }
        boolean result;
        try {
            result = super.onTouchEvent(ev);
        } catch (IllegalArgumentException e) {
            /* There's a bug with the support library where it doesn't check
             * the proper pointer index, so when multi touching the container,
             * this can sometimes be thrown. Supposedly there are no downsides to just
             * catching the exception and moving along, so let's do that....
             */
            result = false;
        }
        return result;
    }

    @Override
    public void setAdapter(PagerAdapter adapter) {
        super.setAdapter(adapter);
        // offset first element so that we can scroll to the left
        setCurrentItem(0);
    }

    @Override
    public void setCurrentItem(int item) {
        // offset the current item to ensure there is space to scroll
        item = getOffsetAmount() + (item % getAdapter().getCount());
        super.setCurrentItem(item);
    }

    public void setCurrentItemAbsolute(int item) {
        super.setCurrentItem(item);
    }

    private int getOffsetAmount() {
        if (getAdapter() instanceof InfinitePagerAdapter) {
            InfinitePagerAdapter infAdapter = (InfinitePagerAdapter) getAdapter();
            // allow for 100 back cycles from the beginning
            // should be enough to create an illusion of infinity
            // warning: scrolling to very high values (1,000,000+) results in
            // strange drawing behaviour
            return infAdapter.getRealCount() * 100;
        } else {
            return 0;
        }
    }

    public void setCurrentItemAbsolute(int newPage, boolean b) {
        super.setCurrentItem(newPage, b);
    }
}