Example usage for android.widget ViewFlipper getChildCount

List of usage examples for android.widget ViewFlipper getChildCount

Introduction

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

Prototype

public int getChildCount() 

Source Link

Document

Returns the number of children in the group.

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  .  j  av  a 2  s . c  o m*/
    if (viewf.getDisplayedChild() != index) {
        viewf.setInAnimation(context, anmiArray[2 * index]);
        viewf.setOutAnimation(context, anmiArray[2 * index + 1]);
        viewf.setDisplayedChild(index);
    }

}