FrameLayout.LayoutParams
状態:-
閲覧数:1,767
投稿日:2014-04-08
更新日:2014-04-08
android.widgetパッケージに属しているが、繋がりとしては「android.viewパッケージに属しているViewGroup.LayoutParamsクラス」の子クラス
・このサイトでは関連性を把握しやすいよう、このグループにカテゴライズしている
・このサイトでは関連性を把握しやすいよう、このグループにカテゴライズしている
クラス構成
親クラス
java.lang.Object
↳ android.view.ViewGroup.LayoutParams
↳ android.view.ViewGroup.MarginLayoutParams
↳ android.widget.FrameLayout.LayoutParams
↳ android.view.ViewGroup.LayoutParams
↳ android.view.ViewGroup.MarginLayoutParams
↳ android.widget.FrameLayout.LayoutParams
・レイアウト関連主要クラスの階層一覧
android:layout_gravity … XML属性
概要
・「FrameLayout.LayoutParamsクラス」で定義
XML属性名 | 内容 |
---|---|
android:layout_gravity | ビューの重力方向を指定する。LinearLayoutと同様 |
Constant | Value | Description |
---|---|---|
top | 0x30 | Push object to the top of its container, not changing its size. |
bottom | 0x50 | Push object to the bottom of its container, not changing its size. |
left | 0x03 | Push object to the left of its container, not changing its size. |
right | 0x05 | Push object to the right of its container, not changing its size. |
center_vertical | 0x10 | Place object in the vertical center of its container, not changing its size. |
fill_vertical | 0x70 | Grow the vertical size of the object if needed so it completely fills its container. |
center_horizontal | 0x01 | 水平方向の中心にオブジェクトを配置。X 座標のみ中央寄せ |
fill_horizontal | 0x07 | Grow the horizontal size of the object if needed so it completely fills its container. |
center | 0x11 | 垂直水平両方の軸の(上下左右)中央にオブジェクトを配置。サイズは変更しない |
fill | 0x77 | Grow the horizontal and vertical size of the object if needed so it completely fills its container. |
clip_vertical | 0x80 | Additional option that can be set to have the top and/or bottom edges of the child clipped to its container's bounds. The clip will be based on the vertical gravity: a top gravity will clip the bottom edge, a bottom gravity will clip the top edge, and neither will clip both edges. |
clip_horizontal | 0x08 | Additional option that can be set to have the left and/or right edges of the child clipped to its container's bounds. The clip will be based on the horizontal gravity: a left gravity will clip the right edge, a right gravity will clip the left edge, and neither will clip both edges. |
start | 0x00800003 | Push object to the beginning of its container, not changing its size. |
end | 0x00800005 | Push object to the end of its container, not changing its size. |