/* * Copyright (C) 2011 Patrik �kerfeldt * * 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.wasu.cs.widget; /** * An interface which defines the contract between a ViewFlow and a * FlowIndicator.
* A FlowIndicator is responsible to show an visual indicator on the total views * number and the current visible view.
* danxingxi on 2016/6/12 * 中国蓝模板广告轮播控件指示器接口 */ public interface FlowIndicator extends ViewFlow.ViewSwitchListener { /** * Set the current ViewFlow. This method is called by the ViewFlow when the * FlowIndicator is attached to it. * * @param view */ public void setViewFlow(ViewFlow view); /** * The scroll position has been changed. A FlowIndicator may implement this * method to reflect the current position * * @param h * @param v * @param oldh * @param oldv */ public void onScrolled(int h, int v, int oldh, int oldv); }