• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2016 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.android.launcher3.pageindicators;
17 
18 /**
19  * Base class for a page indicator.
20  */
21 public interface PageIndicator {
22 
setScroll(int currentScroll, int totalScroll)23     void setScroll(int currentScroll, int totalScroll);
24 
setActiveMarker(int activePage)25     void setActiveMarker(int activePage);
26 
setMarkersCount(int numMarkers)27     void setMarkersCount(int numMarkers);
28 
29     /**
30      * Sets the flag if the Page Indicator should autohide.
31      */
setShouldAutoHide(boolean shouldAutoHide)32     default void setShouldAutoHide(boolean shouldAutoHide) {
33         // No-op by default
34     }
35 
36     /**
37      * Pauses all currently running animations.
38      */
pauseAnimations()39     default void pauseAnimations() {
40         // No-op by default
41     }
42 
43     /**
44      * Force-ends all currently running or paused animations.
45      */
skipAnimationsToEnd()46     default void skipAnimationsToEnd() {
47         // No-op by default
48     }
49 
50     /**
51      * Sets the paint color.
52      */
setPaintColor(int color)53     default void setPaintColor(int color) {
54         // No-op by default
55     }
56 }
57