Most visited

Recently visited

R.styleable

public static final class R.styleable
extends Object

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


Summary

Fields

public static final int[] RecyclerView

Attributes that can be used with a RecyclerView.

public static int RecyclerView_android_descendantFocusability

This symbol is the offset where the descendantFocusability attribute's value can be found in the RecyclerView array.

public static int RecyclerView_android_orientation

This symbol is the offset where the orientation attribute's value can be found in the RecyclerView array.

public static int RecyclerView_layoutManager

Class name of the Layout Manager to be used.

public static int RecyclerView_reverseLayout

This symbol is the offset where the reverseLayout attribute's value can be found in the RecyclerView array.

public static int RecyclerView_spanCount

This symbol is the offset where the spanCount attribute's value can be found in the RecyclerView array.

public static int RecyclerView_stackFromEnd

This symbol is the offset where the stackFromEnd attribute's value can be found in the RecyclerView array.

Public constructors

R.styleable()

Inherited methods

From class java.lang.Object

Fields

RecyclerView_android_descendantFocusability

int RecyclerView_android_descendantFocusability

This symbol is the offset where the descendantFocusability attribute's value can be found in the RecyclerView array.

Must be one of the following constant values.

ConstantValueDescription
afterDescendants1
beforeDescendants0
blocksDescendants2

RecyclerView_android_orientation

int RecyclerView_android_orientation

This symbol is the offset where the orientation attribute's value can be found in the RecyclerView array.

Must be one of the following constant values.

ConstantValueDescription
horizontal0
vertical1

RecyclerView_layoutManager

int RecyclerView_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;

RecyclerView_reverseLayout

int RecyclerView_reverseLayout

This symbol is the offset where the reverseLayout attribute's value can be found in the RecyclerView array.

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

RecyclerView_spanCount

int RecyclerView_spanCount

This symbol is the offset where the spanCount attribute's value can be found in the RecyclerView array.

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

RecyclerView_stackFromEnd

int RecyclerView_stackFromEnd

This symbol is the offset where the stackFromEnd attribute's value can be found in the RecyclerView array.

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

Public constructors

R.styleable

R.styleable ()

Hooray!