public class

GridView

extends AbsListView
java.lang.Object
   ↳ android.view.View
     ↳ android.view.ViewGroup
       ↳ android.widget.AdapterView<T extends android.widget.Adapter>
         ↳ android.widget.AbsListView
           ↳ android.widget.GridView

Class Overview

A view that shows items in two-dimensional scrolling grid. The items in the grid come from the ListAdapter associated with this view.

See the Grid View tutorial.

Summary

XML Attributes
Attribute Name Related Method Description
android:columnWidth setColumnWidth(int)  
android:gravity setGravity(int) Specifies how to place the content of an object, both on the x- and y-axis, within the object itself. 
android:horizontalSpacing setHorizontalSpacing(int)  
android:numColumns setNumColumns(int)  
android:stretchMode setStretchMode(int)  
android:verticalSpacing setVerticalSpacing(int)  
[Expand]
Inherited XML Attributes
From class android.widget.AbsListView
From class android.view.ViewGroup
From class android.view.View
Constants
int AUTO_FIT
int NO_STRETCH
int STRETCH_COLUMN_WIDTH
int STRETCH_SPACING
int STRETCH_SPACING_UNIFORM
[Expand]
Inherited Constants
From class android.widget.AbsListView
From class android.widget.AdapterView
From class android.view.ViewGroup
From class android.view.View
Public Constructors
GridView(Context context)
GridView(Context context, AttributeSet attrs)
GridView(Context context, AttributeSet attrs, int defStyle)
Public Methods
ListAdapter getAdapter()
Returns the adapter currently associated with this widget.
int getStretchMode()
boolean onKeyDown(int keyCode, KeyEvent event)
Default implementation of KeyEvent.Callback.onKeyMultiple(): perform press of the view when KEYCODE_DPAD_CENTER or KEYCODE_ENTER is released, if the view is enabled and clickable.
boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event)
Default implementation of KeyEvent.Callback.onKeyMultiple(): always returns false (doesn't handle the event).
boolean onKeyUp(int keyCode, KeyEvent event)
Default implementation of KeyEvent.Callback.onKeyMultiple(): perform clicking of the view when KEYCODE_DPAD_CENTER or KEYCODE_ENTER is released.
void setAdapter(ListAdapter adapter)
Sets the data behind this GridView.
void setColumnWidth(int columnWidth)
Set the width of columns in the grid.
void setGravity(int gravity)
Describes how the child views are horizontally aligned.
void setHorizontalSpacing(int horizontalSpacing)
Set the amount of horizontal (x) spacing to place between each item in the grid.
void setNumColumns(int numColumns)
Set the number of columns in the grid
void setSelection(int position)
Sets the currently selected item
void setStretchMode(int stretchMode)
Control how items are stretched to fill their space.
void setVerticalSpacing(int verticalSpacing)
Set the amount of vertical (y) spacing to place between each item in the grid.
Protected Methods
void attachLayoutAnimationParameters(View child, ViewGroup.LayoutParams params, int index, int count)
Subclasses should override this method to set layout animation parameters on the supplied child.
int computeVerticalScrollExtent()

Compute the vertical extent of the horizontal scrollbar's thumb within the vertical range.

int computeVerticalScrollOffset()

Compute the vertical offset of the vertical scrollbar's thumb within the horizontal range.

int computeVerticalScrollRange()

Compute the vertical range that the vertical scrollbar represents.

void layoutChildren()
Subclasses must override this method to layout their children.
void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect)
Called by the view system when the focus state of this view changes.
void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

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

[Expand]
Inherited Methods
From class android.widget.AbsListView
From class android.widget.AdapterView
From class android.view.ViewGroup
From class android.view.View
From class java.lang.Object
From interface android.graphics.drawable.Drawable.Callback
From interface android.text.TextWatcher
From interface android.view.KeyEvent.Callback
From interface android.view.ViewManager
From interface android.view.ViewParent
From interface android.view.ViewTreeObserver.OnGlobalLayoutListener
From interface android.view.ViewTreeObserver.OnTouchModeChangeListener
From interface android.view.accessibility.AccessibilityEventSource
From interface android.widget.Filter.FilterListener

XML Attributes

android:columnWidth

Since: API Level

Related Methods

android:gravity

Since: API Level

Specifies how to place the content of an object, both on the x- and y-axis, within the object itself.

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

ConstantValueDescription
top0x30 Push object to the top of its container, not changing its size.
bottom0x50 Push object to the bottom of its container, not changing its size.
left0x03 Push object to the left of its container, not changing its size.
right0x05 Push object to the right of its container, not changing its size.
center_vertical0x10 Place object in the vertical center of its container, not changing its size.
fill_vertical0x70 Grow the vertical size of the object if needed so it completely fills its container.
center_horizontal0x01 Place object in the horizontal center of its container, not changing its size.
fill_horizontal0x07 Grow the horizontal size of the object if needed so it completely fills its container.
center0x11 Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
fill0x77 Grow the horizontal and vertical size of the object if needed so it completely fills its container.
clip_vertical0x80 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_horizontal0x08 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.

This corresponds to the global attribute resource symbol gravity.

Related Methods

android:horizontalSpacing

Since: API Level

Related Methods

android:numColumns

Since: API Level

Related Methods

android:stretchMode

Since: API Level

Related Methods

android:verticalSpacing

Since: API Level

Related Methods

Constants

public static final int AUTO_FIT

Since: API Level 1

Constant Value: -1 (0xffffffff)

public static final int NO_STRETCH

Since: API Level 1

Constant Value: 0 (0x00000000)

public static final int STRETCH_COLUMN_WIDTH

Since: API Level 1

Constant Value: 2 (0x00000002)

public static final int STRETCH_SPACING

Since: API Level 1

Constant Value: 1 (0x00000001)

public static final int STRETCH_SPACING_UNIFORM

Since: API Level 3

Constant Value: 3 (0x00000003)

Public Constructors

public GridView (Context context)

Since: API Level 1

public GridView (Context context, AttributeSet attrs)

Since: API Level 1

public GridView (Context context, AttributeSet attrs, int defStyle)

Since: API Level 1

Public Methods

public ListAdapter getAdapter ()

Since: API Level 1

Returns the adapter currently associated with this widget.

Returns
  • The adapter used to provide this view's content.

public int getStretchMode ()

Since: API Level 1

public boolean onKeyDown (int keyCode, KeyEvent event)

Since: API Level 1

Default implementation of KeyEvent.Callback.onKeyMultiple(): perform press of the view when KEYCODE_DPAD_CENTER or KEYCODE_ENTER is released, if the view is enabled and clickable.

Parameters
keyCode A key code that represents the button pressed, from KeyEvent.
event The KeyEvent object that defines the button action.
Returns
  • If you handled the event, return true. If you want to allow the event to be handled by the next receiver, return false.

public boolean onKeyMultiple (int keyCode, int repeatCount, KeyEvent event)

Since: API Level 1

Default implementation of KeyEvent.Callback.onKeyMultiple(): always returns false (doesn't handle the event).

Parameters
keyCode A key code that represents the button pressed, from KeyEvent.
repeatCount The number of times the action was made.
event The KeyEvent object that defines the button action.
Returns
  • If you handled the event, return true. If you want to allow the event to be handled by the next receiver, return false.

public boolean onKeyUp (int keyCode, KeyEvent event)

Since: API Level 1

Default implementation of KeyEvent.Callback.onKeyMultiple(): perform clicking of the view when KEYCODE_DPAD_CENTER or KEYCODE_ENTER is released.

Parameters
keyCode A key code that represents the button pressed, from KeyEvent.
event The KeyEvent object that defines the button action.
Returns
  • If you handled the event, return true. If you want to allow the event to be handled by the next receiver, return false.

public void setAdapter (ListAdapter adapter)

Since: API Level 1

Sets the data behind this GridView.

Parameters
adapter the adapter providing the grid's data

public void setColumnWidth (int columnWidth)

Since: API Level 1

Set the width of columns in the grid.

Related XML Attributes
Parameters
columnWidth The column width, in pixels.

public void setGravity (int gravity)

Since: API Level 1

Describes how the child views are horizontally aligned. Defaults to Gravity.LEFT

Related XML Attributes
Parameters
gravity the gravity to apply to this grid's children

public void setHorizontalSpacing (int horizontalSpacing)

Since: API Level 1

Set the amount of horizontal (x) spacing to place between each item in the grid.

Related XML Attributes
Parameters
horizontalSpacing The amount of horizontal space between items, in pixels.

public void setNumColumns (int numColumns)

Since: API Level 1

Set the number of columns in the grid

Related XML Attributes
Parameters
numColumns The desired number of columns.

public void setSelection (int position)

Since: API Level 1

Sets the currently selected item

Parameters
position Index (starting at 0) of the data item to be selected. If in touch mode, the item will not be selected but it will still be positioned appropriately.

public void setStretchMode (int stretchMode)

Since: API Level 1

Control how items are stretched to fill their space.

Related XML Attributes

public void setVerticalSpacing (int verticalSpacing)

Since: API Level 1

Set the amount of vertical (y) spacing to place between each item in the grid.

Related XML Attributes
Parameters
verticalSpacing The amount of vertical space between items, in pixels.

Protected Methods

protected void attachLayoutAnimationParameters (View child, ViewGroup.LayoutParams params, int index, int count)

Since: API Level 1

Subclasses should override this method to set layout animation parameters on the supplied child.

Parameters
child the child to associate with animation parameters
params the child's layout parameters which hold the animation parameters
index the index of the child in the view group
count the number of children in the view group

protected int computeVerticalScrollExtent ()

Since: API Level 1

Compute the vertical extent of the horizontal scrollbar's thumb within the vertical range. This value is used to compute the length of the thumb within the scrollbar's track.

The range is expressed in arbitrary units that must be the same as the units used by computeVerticalScrollRange() and computeVerticalScrollOffset().

The default extent is the drawing height of this view.

Returns
  • the vertical extent of the scrollbar's thumb

protected int computeVerticalScrollOffset ()

Since: API Level 1

Compute the vertical offset of the vertical scrollbar's thumb within the horizontal range. This value is used to compute the position of the thumb within the scrollbar's track.

The range is expressed in arbitrary units that must be the same as the units used by computeVerticalScrollRange() and computeVerticalScrollExtent().

The default offset is the scroll offset of this view.

Returns
  • the vertical offset of the scrollbar's thumb

protected int computeVerticalScrollRange ()

Since: API Level 1

Compute the vertical range that the vertical scrollbar represents.

The range is expressed in arbitrary units that must be the same as the units used by computeVerticalScrollExtent() and computeVerticalScrollOffset().

Returns
  • the total vertical range represented by the vertical scrollbar

    The default range is the drawing height of this view.

protected void layoutChildren ()

Since: API Level 1

Subclasses must override this method to layout their children.

protected void onFocusChanged (boolean gainFocus, int direction, Rect previouslyFocusedRect)

Since: API Level 1

Called by the view system when the focus state of this view changes. When the focus change event is caused by directional navigation, direction and previouslyFocusedRect provide insight into where the focus is coming from. When overriding, be sure to call up through to the super class so that the standard focus handling will occur.

Parameters
gainFocus True if the View has focus; false otherwise.
direction The direction focus has moved when requestFocus() is called to give this view focus. Values are FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT or FOCUS_RIGHT. It may not always apply, in which case use the default.
previouslyFocusedRect The rectangle, in this view's coordinate system, of the previously focused view. If applicable, this will be passed in as finer grained information about where the focus is coming from (in addition to direction). Will be null otherwise.

protected void onMeasure (int widthMeasureSpec, int heightMeasureSpec)

Since: API Level 1

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 overriden 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 horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec.
heightMeasureSpec vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec.