Skip to main content

Density

Struct Density 

Source
pub struct Density { /* private fields */ }
Expand description

The device pixel grid a layout measures against: how many device pixels a layout point is worth, and how the platform converts a text size.

This is Compose’s Density, and local_density is its LocalDensity.

Read it in a composable through density, which subscribes to the composition local rather than to process-wide state, so a subtree given its own density recomposes only what read it. Tests and goldens construct one directly so a measurement does not depend on the machine it runs on.

Implementations§

Source§

impl Density

Source

pub fn from_host() -> Self

The grid the host installed on this shell.

This is the composition local’s default, not the way a composable should read the density – use density for that, so a subtree provided its own grid is honoured.

Source

pub fn new(density: f32, font_scale: f32) -> Self

A grid stated outright, for a test or a golden. The setting is taken as a plain multiplier, which is what it is wherever the platform reports no conversion of its own.

Source

pub fn with_curve(density: f32, font_scale: FontScaleCurve) -> Self

A grid whose text size follows the platform’s own Sp conversion rather than a multiplier. See crate::font_scale.

Source

pub fn density(self) -> f32

Device pixels per layout point.

Source

pub fn font_scale(self) -> f32

The user’s text size setting.

Source

pub fn font_scale_curve(self) -> FontScaleCurve

The conversion the platform performs for a size in Sp.

Source

pub fn dp(self, value: f32) -> f32

Dp.roundToPx(), expressed back in points: a dp length snapped to the whole device pixel Compose would give it.

Source

pub fn sp(self, value: f32) -> f32

A text size in scale-independent pixels, snapped the same way.

Anything that must not move when the user changes their text size is measured with Density::dp instead — that is the whole difference between the two.

Source

pub fn round(self, value: f32) -> f32

A length snapped to the nearest whole device pixel, exact halves up.

Source

pub fn floor(self, value: f32) -> f32

A length snapped down to a whole device pixel.

Source

pub fn ceil(self, value: f32) -> f32

A length snapped up to a whole device pixel.

This is what a line box does with its own height, and what a container does with a content size it must not clip.

Source

pub fn to_px(self, points: f32) -> f32

Points to device pixels.

Source

pub fn centre(self, available: f32, content: f32) -> f32

Centres content in available the way Compose does: on a whole pixel.

Arrangement.Center measures every child in whole pixels and rounds the leading gap before placing any of them, so a column whose content is an odd number of pixels tall starts on a pixel boundary rather than across one. Halving in floats instead is the single easiest way to soften every edge in a row.

Trait Implementations§

Source§

impl Clone for Density

Source§

fn clone(&self) -> Density

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Density

Source§

impl Debug for Density

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Density

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Density

Source§

fn eq(&self, other: &Density) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Density

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.