Skip to content

JJdeGroot/AutoGridView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

AutoGridView

Solving GridView overlap on Android.

Usage

Add the AutoGridView.java file to your project. Now you can simply define an AutoGridview element in the XML just like you would with a normal Gridview. Make sure you set the “android:numColumns” value to a valid integer resource, and you are good to go.

<nl.obduro.views.AutoGridView
        android:id="@+id/example_GridView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:listSelector="@drawable/selector"
        android:numColumns="@integer/grid_columns"
        android:stretchMode="columnWidth">
</nl.obduro.views.AutoGridView>

Attaching an adapter or listener is exactly the same as a GridView as well.

AutoGridView grid = (AutoGridView) findViewById(R.id.activity_version_GridView);
PairAdapter adapter = new PairAdapter(getBaseContext(), -1, list);
grid.setAdapter(adapter);

I hope this helped you out, and if it did, please leave a comment or star the repository :)

Explanation

Lately I have been working on a new Android app that heavily depends on GridViews. The GridView works great when all of your views are the same height. But when your views have different heights, the grid doesn't behave as expected. Views will overlap each other, causing an anaesthetically pleasing grid.

The problem

Searching around the web for a solution I found out why this happens. The GridView uses the far right view in a row to determine the height. This can be found in the GridView source code, at line xx Searching further for a work around I found a couple people with the same problem: GridView item overlap when scrolling & How to make the GridView row height fit the tallest item?. A few solutions have been posted, but they didn't really satisfy me so I decided to try to get something working myself.

The idea

  1. Determine which views are in which row
  2. Determine the height of each view in a row
  3. Determine the tallest view for each row
  4. Apply this tallest height to all views in the row

After finding the correct hooks to implement the calculation it started to work. The result is a GridView that does actually work as you would expect it to work!

The methods

private void init(AttributeSet attrs)

In this method I determine the resource ID of the "numColumns" attribute defined in the XML. The amount of columns is needed for the calculations. GridView has a method getNumColumns(), but this requires API level 11..

private void updateColumns()

Reads the numColumns integer value from the resources. This is used to show different amount of columns depending on landscape or portrait mode.

public void setNumColumns(int numColumns)

This method has been overridden to grab the new value of the number of columns, and to adjust the selection. The selection needs to be adjusted so the same row is shown to the user before a rotation.

protected void onLayout(boolean changed, int leftPos, int topPos, int rightPos, int bottomPos)

This method has been overridden to calculate the new heights of the views.

protected void onConfigurationChanged(Configuration newConfig)

This method has been overridden to update the amount of columns to show.

protected void onScrollChanged(int newHorizontal, int newVertical, int oldHorizontal, int oldVertical)

This method has been overridden to check if new views need to be shown. If this is the case, the view heights must be recalculated.

private void setHeights()

This is the method where all the magic happens. The used adapter gets retrieved, and by using this adapter we can get the displayed views. With the help of the numColumns variable the views per row can be determined. The tallest height gets calculated, and is then applied to each view.

About

Solution to Android GridView overlap

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages