public
static
class
WearableFrameLayout.LayoutParams
extends FrameLayout.LayoutParams
java.lang.Object | ||||
↳ | android.view.ViewGroup.LayoutParams | |||
↳ | android.view.ViewGroup.MarginLayoutParams | |||
↳ | android.widget.FrameLayout.LayoutParams | |||
↳ | android.support.wearable.view.WearableFrameLayout.LayoutParams |
Per-child layout information for layouts on wearable devices.
Inherited constants |
---|
![]()
android.widget.FrameLayout.LayoutParams
|
![]()
android.view.ViewGroup.MarginLayoutParams
|
![]()
android.view.ViewGroup.LayoutParams
|
Fields | |
---|---|
public
int |
bottomMarginRound
|
public
int |
gravityRound
The gravity to apply with the View to which these layout parameters are associated on a round device. |
public
int |
heightRound
|
public
int |
leftMarginRound
|
public
int |
rightMarginRound
|
public
int |
topMarginRound
|
public
int |
widthRound
|
Inherited fields |
---|
![]()
android.widget.FrameLayout.LayoutParams
|
![]()
android.view.ViewGroup.MarginLayoutParams
|
![]()
android.view.ViewGroup.LayoutParams
|
Public constructors | |
---|---|
WearableFrameLayout.LayoutParams(Context c, AttributeSet attrs)
|
|
WearableFrameLayout.LayoutParams(int width, int height, int gravity, int widthRound, int heightRound, int gravityRound)
Creates a new set of layout parameters with the specified width, height and weight for both square and round devices. |
|
WearableFrameLayout.LayoutParams(int width, int height, int gravity)
|
|
WearableFrameLayout.LayoutParams(int width, int height)
|
|
WearableFrameLayout.LayoutParams(WearableFrameLayout.LayoutParams source)
|
Inherited methods | |
---|---|
![]()
android.view.ViewGroup.MarginLayoutParams
| |
![]()
android.view.ViewGroup.LayoutParams
| |
![]()
java.lang.Object
|
int bottomMarginRound
int gravityRound
The gravity to apply with the View to which these layout parameters are associated on a round device.
See also:
int heightRound
int leftMarginRound
int rightMarginRound
int topMarginRound
int widthRound
WearableFrameLayout.LayoutParams (Context c, AttributeSet attrs)
Parameters | |
---|---|
c |
Context
|
attrs |
AttributeSet
|
WearableFrameLayout.LayoutParams (int width, int height, int gravity, int widthRound, int heightRound, int gravityRound)
Creates a new set of layout parameters with the specified width, height and weight for both square and round devices.
Parameters | |
---|---|
width |
int :
the width on a square device, either MATCH_PARENT ,
WRAP_CONTENT or a fixed size in pixels |
height |
int :
the height, either MATCH_PARENT ,
WRAP_CONTENT or a fixed size in pixels |
gravity |
int :
the gravity |
widthRound |
int :
the width override for a round device, either MATCH_PARENT ,
WRAP_CONTENT or a fixed size in pixels |
heightRound |
int :
the height override for a round device, either MATCH_PARENT ,
WRAP_CONTENT or a fixed size in pixels |
gravityRound |
int :
the gravity override for a round device |
See also:
WearableFrameLayout.LayoutParams (int width, int height, int gravity)
Parameters | |
---|---|
width |
int
|
height |
int
|
gravity |
int
|
WearableFrameLayout.LayoutParams (int width, int height)
Parameters | |
---|---|
width |
int
|
height |
int
|
WearableFrameLayout.LayoutParams (WearableFrameLayout.LayoutParams source)
Parameters | |
---|---|
source |
WearableFrameLayout.LayoutParams
|