Questions tagged [android-gridview]

GridView is a subclass of AdapterView that displays items in a two-dimensional, scrollable grid.

GridView is a subclass of AdapterView that displays items in a two-dimensional, scrollable grid. The grid items are automatically inserted to the layout using a ListAdapter. The cell-data binding is made through an Adapter.

Reference

1627 questions
0
votes
0 answers

Images Don't Display in GridView and onClick is not Called

I have a gridView that is supposed to show bitmaps from another activity and certain images (ones that I have in my drawables folder that I am adding specifically). However, the images from my drawable folder aren't showing up in the gridView at…
user2909006
  • 253
  • 6
  • 22
0
votes
1 answer

Intent in Checkbox to send Bitmap to GridView doesn't work

I am trying to send a bitmap that I make during a onCheck method of a checkbox over to a gridView where the bitmap would then show up in the gridView. I'm trying to convert the bitmap to a byte array and then pass that array to an intent where I…
user2909006
  • 253
  • 6
  • 22
0
votes
1 answer

In android,The GridView control becomes bigger, and not just the picture bigger

I need some help,please. In my gridview , there is a imageView and TextView in the gridview's item .I want GridView picture bigger, found that just picture bigger, but control does not change. So I want to make GridView control bigger. I try to…
0
votes
1 answer

Need Help getting drawable from one class into gridView

I have a checkbox, that when checked, turns an icon into a bitmapdrawable. I then want that bitmap drawable to be able to show up in a gridView. I can't seem to get this working. Here is my checkbox: addCheckbox …
user2909006
  • 253
  • 6
  • 22
0
votes
2 answers

Gridview scrolling stuck when try to scroll

I have a grid view and I am trying to lasd a huge amount of data in it, if i try to reuse the layoutinflater in Gridview than the items are repeating and if i try to load new layout then scrolling stuck wht should I do in this case. Below is my…
0
votes
3 answers

How can I add lazyloader in my gridview?

public class NewMovie extends Activity { GridView lv; Vibrator vibrator; SimpleAdapter adapter ; Button b; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub …
Rajshree Tiwari
  • 630
  • 1
  • 7
  • 27
0
votes
1 answer

gridview performance issue

I have a custom calendar. For its month view I use grid view. On each day of the calendar the number of day of month and the number of events on each day are shown. To reach that goal I ask for the events of each day in getView. To increase…
roland
  • 227
  • 3
  • 11
0
votes
2 answers

Highlight GridView cell like Google Play Store

I'm trying to figure out how to highlight an entire GridView cell when you press it, just like in the Google Play Store. Here's an image of what I'm trying to do (Roaring Skies cell is what I'm trying to accomplish): I know that you can use a…
Jason
  • 1,238
  • 1
  • 15
  • 18
0
votes
1 answer

Custom GridView lagging using multiple Bitmaps

I am populating GridView with multiple item,each containing ImageView and TextView, there will be about 100+ such items. Problem is everything is executing properly but activity is lagging heavily while scrolling, I tried to load bitmap efficiently…
0
votes
2 answers

Gridview smooth scroll and image population from the system gallery

I have created a gallery. I am populating a gridview from a simple cursor adapter (custom implementation). First issue is that gridview stucks in the middle while scrolling. I think its because images are binded to a view continuously on user…
0
votes
1 answer

How to load images in ImageView with delay?

I am trying to make gallery and display gridview of ImageViews, but with delay in loadtime of each thumbnail.
Karan Nagpal
  • 521
  • 1
  • 8
  • 19
0
votes
2 answers

Unable to poulate Gridview from CustomSimpleCursorAdapter

I am trying to create a GalleryView. Im populating a GridView from a Custom implementation of SimpleCursor Adapter. I dont see anything after setting an adapter to a gridview. I can only see a white screen. I think I am not binding the view…
Ahmed
  • 2,966
  • 7
  • 42
  • 69
0
votes
2 answers

changing the background of a view inside my relativelayout

I'm having trouble with this layout that is a item in my grid adapter. I'm using caldroid I inflate my cell layout in the getview: R.layout.calendar_view_date_cell.xml
Lokkio
  • 1,703
  • 2
  • 16
  • 19
0
votes
1 answer

How to start a new activity from grid view present in home screen widget?

I'm new to create a widget. I created a widget which displays all the installed application in grid view. I've done all the thing by using remoteviewfactory but the problem is that i can't launch the respective application from the widget. I don't…
Sridhar
  • 95
  • 1
  • 8
0
votes
2 answers

delete spacing between rows in Gridview

I am using Gridview to put the images inside it, I split one image into small pieces of equal length and width e.g number of column=4 and number of rows=4 then I put the pieces in ArrayList when I put the number of column equal count of pieces e.g 4…
sham
  • 145
  • 2
  • 9