Hi everyone,
I'm pretty new to Android, and I'm looking for a little help.
I have a GridView with the following XML in a linear layout.
    <GridView android:id="@+id/gridview"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
        android:numColumns="2"
        android:columnWidth="90dp"
        android:stretchMode="columnWidth">

I'm adding a series of CheckBoxes to the view with...

        public View getView(int position, View convertView, ViewGroup
parent)
        {
            CheckBox checkView;
            if (convertView == null) {
                checkView = new CheckBox(context);
                checkView.setPadding(5, 5, 5, 5);
            } else {
                checkView = (CheckBox) convertView;
            }
            checkView.setText(checkNames[position]);
            checkView.setWidth(400);

            return imageView;
        }

No matter how many different widths I try, including fill_parent and
wrap_content, the text winds up behind the box instead of next to it.
Any hints or tricks?
Thanks,
Andrew

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to