Most visited

Recently visited

Added in API level 1

GridLayoutAnimationController.AnimationParameters

public static class GridLayoutAnimationController.AnimationParameters
extends LayoutAnimationController.AnimationParameters

java.lang.Object
   ↳ android.view.animation.LayoutAnimationController.AnimationParameters
     ↳ android.view.animation.GridLayoutAnimationController.AnimationParameters


The set of parameters that has to be attached to each view contained in the view group animated by the grid layout animation controller. These parameters are used to compute the start time of each individual view's animation.

Summary

Fields

public int column

The view group's column to which the view belongs.

public int columnsCount

The number of columns in the view's enclosing grid layout.

public int row

The view group's row to which the view belongs.

public int rowsCount

The number of rows in the view's enclosing grid layout.

Inherited fields

From class android.view.animation.LayoutAnimationController.AnimationParameters

Public constructors

GridLayoutAnimationController.AnimationParameters()

Inherited methods

From class java.lang.Object

Fields

column

Added in API level 1
int column

The view group's column to which the view belongs.

columnsCount

Added in API level 1
int columnsCount

The number of columns in the view's enclosing grid layout.

row

Added in API level 1
int row

The view group's row to which the view belongs.

rowsCount

Added in API level 1
int rowsCount

The number of rows in the view's enclosing grid layout.

Public constructors

GridLayoutAnimationController.AnimationParameters

Added in API level 1
GridLayoutAnimationController.AnimationParameters ()

Hooray!