Most visited

Recently visited

ViewPager.LayoutParams

public static class ViewPager.LayoutParams
extends ViewGroup.LayoutParams

java.lang.Object
   ↳ android.view.ViewGroup.LayoutParams
     ↳ android.support.v4.view.ViewPager.LayoutParams


Layout parameters that should be supplied for views added to a ViewPager.

Summary

Inherited XML attributes

From class android.view.ViewGroup.LayoutParams

Inherited constants

From class android.view.ViewGroup.LayoutParams

Fields

public int gravity

Gravity setting for use on decor views only: Where to position the view page within the overall ViewPager container; constants are defined in Gravity.

public boolean isDecor

true if this view is a decoration on the pager itself and not a view supplied by the adapter.

Inherited fields

From class android.view.ViewGroup.LayoutParams

Public constructors

ViewPager.LayoutParams()
ViewPager.LayoutParams(Context context, AttributeSet attrs)

Inherited methods

From class android.view.ViewGroup.LayoutParams
From class java.lang.Object

Fields

gravity

int gravity

Gravity setting for use on decor views only: Where to position the view page within the overall ViewPager container; constants are defined in Gravity.

isDecor

boolean isDecor

true if this view is a decoration on the pager itself and not a view supplied by the adapter.

Public constructors

ViewPager.LayoutParams

ViewPager.LayoutParams ()

ViewPager.LayoutParams

ViewPager.LayoutParams (Context context, 
                AttributeSet attrs)

Parameters
context Context
attrs AttributeSet

Hooray!