Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to set border of GridView.
Such as Divider and DividerHeight of ListView.
Or how to display the border.

share|improve this question
A divider is not a border for a ListView... Do you want to control the gray borders between every item in this image or a border only around the outside like a picture frame? – Sam Aug 21 '12 at 1:44
Yes, I mean that. – brian Aug 21 '12 at 2:14

1 Answer

up vote 6 down vote accepted

Here are some examples of borders in a GridView.

GridView Borders

You can see where I defined the Red and Blue borders in my XML.

This is my main.xml Layout:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/red" >

    <GridView
        android:id="@+id/gridview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_margin="10dp"
        android:background="@color/blue"
        android:columnWidth="90dp"
        android:gravity="center"
        android:horizontalSpacing="10dp"
        android:numColumns="auto_fit"
        android:stretchMode="columnWidth"
        android:verticalSpacing="10dp"
         />

</RelativeLayout>

The thickness of the Red border is controlled GridView's layout_margin attribute and the Blue borders are controlled by horizontalSpacing and verticalSpacing.

To make the black cell backgrounds I used this layout and saved it as list_item.xml:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/black"
    android:gravity="center_vertical"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:paddingLeft="6dip"
    android:textAppearance="?android:attr/textAppearanceLarge" />

My Activity:

public class Example extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        String[] array = new String[] {"one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"};
        List<String> list = new ArrayList<String>(Arrays.asList(array));
        GridView grid = (GridView) findViewById(R.id.gridview);
        grid.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, list));
    }
}
share|improve this answer
This places a margin around the GridView. Is there a way to add padding to the GridView so that the scrollable area still fills the entire screen as opposed to having a 10dp margin around the GridView? – mdupls Feb 5 at 20:19
Do you want to remove the red margin from the image? – Sam Feb 5 at 21:21
No. Ideally I want to have a specified padding around the content of the GridView rather than have a margin around the GridView. Understand the difference, I can explain further if necessary? :) – mdupls Feb 5 at 21:26
In other words, with your example, if you scroll the GridView vertically, the items do not appear on top of the red border. They are clipped at the margins of the GridView (which is the blue area). – mdupls Feb 5 at 21:29
That sounds to me like you don't want the red margin in my image, instead you want blue padding where the red is now. Simply change layout_margin to layout_padding in the GridView. – Sam Feb 5 at 21:33
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.