Example usage for android.widget ViewFlipper getDisplayedChild

List of usage examples for android.widget ViewFlipper getDisplayedChild

Introduction

In this page you can find the example usage for android.widget ViewFlipper getDisplayedChild.

Prototype

public int getDisplayedChild() 

Source Link

Document

Returns the index of the currently displayed child view.

Usage

From source file:Main.java

public static void FlipperShowIndex(Context context, ViewFlipper viewf, int index, int[] anmiArray) {
    if (viewf.getChildCount() != anmiArray.length / 2)
        return;/*  w w  w .  java 2s .c o m*/
    if (viewf.getDisplayedChild() != index) {
        viewf.setInAnimation(context, anmiArray[2 * index]);
        viewf.setOutAnimation(context, anmiArray[2 * index + 1]);
        viewf.setDisplayedChild(index);
    }

}