{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}

BiasAlignment.Vertical

public final class BiasAlignment.Vertical implements Alignment.Vertical


An Alignment.Vertical specified by bias: for example, a bias of -1 represents alignment to the top, a bias of 0 will represent centering, and a bias of 1 will represent bottom. Any value can be specified to obtain an alignment. Inside the -1, 1 range, the obtained alignment will position the aligned size fully inside the available space, while outside the range it will the aligned size will be positioned partially or completely outside.

See also
BiasAlignment.Horizontal

Summary

Public constructors

Vertical(float bias)

Public methods

int
align(int size, int space)

Calculates the vertical position of a box of height size relative to the top edge of an area of height space.

Public constructors

Vertical

public Vertical(float bias)

Public methods

align

public int align(int size, int space)

Calculates the vertical position of a box of height size relative to the top edge of an area of height space. The returned offset can be negative or larger than space - size meaning that the box will be positioned partially or completely outside the area.