Most visited

Recently visited

R.attr

public static final class R.attr
extends Object

java.lang.Object
   ↳ android.support.v7.recyclerview.R.attr


Summary

Fields

public static int layoutManager

Class name of the Layout Manager to be used.

public static int reverseLayout

May be a boolean value, such as "true" or "false".

public static int spanCount

May be an integer value, such as "100".

public static int stackFromEnd

May be a boolean value, such as "true" or "false".

Public constructors

R.attr()

Inherited methods

From class java.lang.Object

Fields

layoutManager

int layoutManager

Class name of the Layout Manager to be used.

The class must extend android.support.v7.widget.RecyclerView$LayoutManager and have either a default constructor or constructor with the signature (android.content.Context, android.util.AttributeSet, int, int).

If the name starts with a '.', application package is prefixed. Else, if the name contains a '.', the classname is assumed to be a full class name. Else, the recycler view package name (android.support.v7.widget) is prefixed.

May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character;

reverseLayout

int reverseLayout

May be a boolean value, such as "true" or "false".

spanCount

int spanCount

May be an integer value, such as "100".

stackFromEnd

int stackFromEnd

May be a boolean value, such as "true" or "false".

Public constructors

R.attr

R.attr ()

Hooray!