to top
Android APIs
public static class

ActionBar.LayoutParams

extends ViewGroup.MarginLayoutParams
java.lang.Object
   ↳ android.view.ViewGroup.LayoutParams
     ↳ android.view.ViewGroup.MarginLayoutParams
       ↳ android.app.ActionBar.LayoutParams

Class Overview

Per-child layout information associated with action bar custom views.

Summary

XML Attributes
Attribute Name Related Method Description
android:layout_gravity Standard gravity constant that a child supplies to its parent. 
[Expand]
Inherited XML Attributes
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams
[Expand]
Inherited Constants
From class android.view.ViewGroup.LayoutParams
Fields
public int gravity Gravity for the view associated with these LayoutParams.
[Expand]
Inherited Fields
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams
Public Constructors

? Examples
ActionBar.LayoutParams( Context c, AttributeSet attrs)

? Examples
ActionBar.LayoutParams(int width, int height)

? Examples
ActionBar.LayoutParams(int width, int height, int gravity)

? Examples
ActionBar.LayoutParams(int gravity)

? Examples
ActionBar.LayoutParams( ActionBar.LayoutParams source)

? Examples
ActionBar.LayoutParams( ViewGroup.LayoutParams source)
[Expand]
Inherited Methods
From class android.view.ViewGroup.MarginLayoutParams
From class android.view.ViewGroup.LayoutParams
From class java.lang.Object

XML Attributes

android:layout_gravity

Standard gravity constant that a child supplies to its parent. Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout.

Must be one or more (separated by '|') of the following constant values.

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 Place object in the horizontal center of its container, not changing its size.
fill_horizontal 0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center 0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
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.

This corresponds to the global attribute resource symbol layout_gravity.

Related Methods

Fields

public int gravity

Added in API level 11

Gravity for the view associated with these LayoutParams.

See Also

Public Constructors

public ActionBar.LayoutParams (Context c, AttributeSet attrs)

Added in API level 11

public ActionBar.LayoutParams (int width, int height)

Added in API level 11

public ActionBar.LayoutParams (int width, int height, int gravity)

Added in API level 11

public ActionBar.LayoutParams (int gravity)

Added in API level 11

public ActionBar.LayoutParams (ActionBar.LayoutParams source)

Added in API level 11

public ActionBar.LayoutParams (ViewGroup.LayoutParams source)

Added in API level 11

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.