BoxInsetLayout.LayoutParams
public class BoxInsetLayout.LayoutParams extends FrameLayout.LayoutParams
| java.lang.Object | ||||
| ↳ | android.view.ViewGroup.LayoutParams | |||
| ↳ | android.view.ViewGroup.MarginLayoutParams | |||
| ↳ | android.widget.FrameLayout.LayoutParams | |||
| ↳ | androidx.wear.widget.BoxInsetLayout.LayoutParams |
Per-child layout information for layouts that support margins, gravity and boxedEdges. See BoxInsetLayout Layout Attributes for a list of all child view attributes that this class supports. layout_boxedEdges
Summary
Constants |
|
|---|---|
static final int |
BOX_ALL = 15The view will force an inset on all of the edges of the children. |
static final int |
BOX_BOTTOM = 8The view will force an inset on the bottom edge of the children. |
static final int |
BOX_LEFT = 1The view will force an inset on the left edge of the children. |
static final int |
BOX_NONE = 0Default boxing setting. |
static final int |
BOX_RIGHT = 4The view will force an inset on the right edge of the children. |
static final int |
BOX_TOP = 2The view will force an inset on the top edge of the children. |
Public fields |
|
|---|---|
int |
Specifies the screen-specific insets for each of the child edges. |
Public constructors |
|---|
|
Copy constructor. |
LayoutParams(@NonNull FrameLayout.LayoutParams source)Copy constructor. |
LayoutParams(@NonNull ViewGroup.LayoutParams source)Copy constructor. |
|
Copy constructor. |
LayoutParams(@NonNull Context context, @Nullable AttributeSet attrs)Creates a new set of layout parameters. |
LayoutParams(int width, int height)Creates a new set of layout parameters with the specified width and height. |
LayoutParams(int width, int height, int gravity)Creates a new set of layout parameters with the specified width, height and gravity. |
LayoutParams(int width, int height, int gravity, int boxed) |
Inherited Constants |
||||||
|---|---|---|---|---|---|---|
|
||||||
|
Inherited fields |
||||||||
|---|---|---|---|---|---|---|---|---|
|
||||||||
|
Inherited methods |
||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||
|
Constants
BOX_ALL
public static final int BOX_ALL = 15
The view will force an inset on all of the edges of the children.
BOX_BOTTOM
public static final int BOX_BOTTOM = 8
The view will force an inset on the bottom edge of the children.
BOX_LEFT
public static final int BOX_LEFT = 1
The view will force an inset on the left edge of the children.
BOX_NONE
public static final int BOX_NONE = 0
Default boxing setting. There are no insets forced on the child views.
Public fields
boxedEdges
public int boxedEdges
Specifies the screen-specific insets for each of the child edges.
Public constructors
LayoutParams
public LayoutParams(@NonNull BoxInsetLayout.LayoutParams source)
Copy constructor. Clones the width, height, margin values, boxedEdges and gravity of the source.
| Parameters | |
|---|---|
@NonNull BoxInsetLayout.LayoutParams source |
The layout params to copy from. |
LayoutParams
public LayoutParams(@NonNull FrameLayout.LayoutParams source)
Copy constructor. Clones the width, height, margin values, and gravity of the source.
| Parameters | |
|---|---|
@NonNull FrameLayout.LayoutParams source |
The layout params to copy from. |
LayoutParams
public LayoutParams(@NonNull ViewGroup.LayoutParams source)
Copy constructor. Clones the width and height of the source.
| Parameters | |
|---|---|
@NonNull ViewGroup.LayoutParams source |
The layout params to copy from. |
LayoutParams
public LayoutParams(@NonNull ViewGroup.MarginLayoutParams source)
Copy constructor. Clones the width, height and margin values.
| Parameters | |
|---|---|
@NonNull ViewGroup.MarginLayoutParams source |
The layout params to copy from. |
LayoutParams
public LayoutParams(@NonNull Context context, @Nullable AttributeSet attrs)
Creates a new set of layout parameters. The values are extracted from the supplied attributes set and context.
| Parameters | |
|---|---|
@NonNull Context context |
the application environment |
@Nullable AttributeSet attrs |
the set of attributes from which to extract the layout parameters' values |
LayoutParams
public LayoutParams(int width, int height)
Creates a new set of layout parameters with the specified width and height.
| Parameters | |
|---|---|
int width |
the width, either |
int height |
the height, either |
LayoutParams
public LayoutParams(int width, int height, int gravity)
Creates a new set of layout parameters with the specified width, height and gravity.
| Parameters | |
|---|---|
int width |
the width, either |
int height |
the height, either |
int gravity |
the gravity |
| See also | |
|---|---|
Gravity |