List of usage examples for android.widget ViewFlipper getChildCount
public int getChildCount()
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); } }