Added in API level 14

Space


class Space : View
kotlin.Any
   ↳ android.view.View
   ↳ android.widget.Space

Space is a lightweight View subclass that may be used to create gaps between components in general purpose layouts.

Summary

Inherited XML attributes
Inherited constants
Public constructors
Space(context: Context!)

Space(context: Context!, attrs: AttributeSet!)

Space(context: Context!, attrs: AttributeSet!, defStyleAttr: Int)

Space(context: Context!, attrs: AttributeSet!, defStyleAttr: Int, defStyleRes: Int)

Public methods
Unit
draw(canvas: Canvas)

Draw nothing.

Protected methods
Unit
onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int)

Measure the view and its content to determine the measured width and the measured height.

Inherited functions
Inherited properties

Public constructors

Space

Added in API level 14
Space(context: Context!)

Space

Added in API level 14
Space(
    context: Context!,
    attrs: AttributeSet!)

Space

Added in API level 14
Space(
    context: Context!,
    attrs: AttributeSet!,
    defStyleAttr: Int)

Space

Added in API level 21
Space(
    context: Context!,
    attrs: AttributeSet!,
    defStyleAttr: Int,
    defStyleRes: Int)

Public methods

draw

Added in API level 14
fun draw(canvas: Canvas): Unit

Draw nothing.

Parameters
canvas Canvas: an unused parameter.

Protected methods

onMeasure

Added in API level 14
protected fun onMeasure(
    widthMeasureSpec: Int,
    heightMeasureSpec: Int
): Unit

Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int,int) and should be overridden by subclasses to provide accurate and efficient measurement of their contents.

CONTRACT: When overriding this method, you must call setMeasuredDimension(int,int) to store the measured width and height of this view. Failure to do so will trigger an IllegalStateException, thrown by measure(int,int). Calling the superclass' onMeasure(int,int) is a valid use.

The base class implementation of measure defaults to the background size, unless a larger size is allowed by the MeasureSpec. Subclasses should override onMeasure(int,int) to provide better measurements of their content.

If this method is overridden, it is the subclass's responsibility to make sure the measured height and width are at least the view's minimum height and width (getSuggestedMinimumHeight() and getSuggestedMinimumWidth()).

Parameters
widthMeasureSpec Int: horizontal space requirements as imposed by the parent. The requirements are encoded with android.view.View.MeasureSpec.
heightMeasureSpec Int: vertical space requirements as imposed by the parent. The requirements are encoded with android.view.View.MeasureSpec.