public @interface

PagedListView.Gutter

implements java.lang.annotation.Annotation

 androidx.car.widget.PagedListView.Gutter

Overview

The possible values for @{link #setGutter}. The default value is actually PagedListView.Gutter.BOTH.

Summary

Fields
public static final intBOTH

Include a gutter on both sides of the list items.

public static final intEND

Include a gutter only on the end side (that is, the opposite side of the scroll bar).

public static final intNONE

No gutter on either side of the list items.

public static final intSTART

Include a gutter only on the start side (that is, the same side as the scroll bar).

Fields

public static final int NONE

No gutter on either side of the list items. The items will span the full width of the PagedListView, but will not overlap the scroll bar.

public static final int START

Include a gutter only on the start side (that is, the same side as the scroll bar).

public static final int END

Include a gutter only on the end side (that is, the opposite side of the scroll bar).

public static final int BOTH

Include a gutter on both sides of the list items. This is the default behavior.