1
vote
2answers
59 views

Load Images in GridView in a Synchronization - Android

I have a question, I have a GridView in which I am loading images using a ImageView, these images it´s stored in the SD, for this I am using the Runnable class for loading. When it scrolling through ...
0
votes
0answers
29 views

How to refresh image in cell of Gridview Android

I have a view (LinearLayout) contain a gridview. Cell of gridview contain Imageview In getView in adapter load image from sdcard to imageview My problem is imageView don't refresh after set bitmap. I ...
0
votes
1answer
29 views

onTouch movement for ImageView?

I am relatively new to Android development. But I was wondering whether it is possible to move these images, so they can swap with each other in a grid. As it is a board game I am trying to ...
2
votes
0answers
91 views

How to make automatic onClick and update mark image in Gridview

The first question that I have is that I have downloaded from the Internet MarkableImageView class to add a marker to an image I have already selected. The class is as follows: public class ...
0
votes
1answer
77 views

ImageView Scale Type incorrect inside of a GridView

I have a GridView with 4 columns and n-rows. Each cell is simply an ImageView. My custom adapter's getView() code looks like this: @Override public View getView(int position, View convertView, ...
0
votes
0answers
41 views

Add color layer to ImageView

I have a gridview with a background with ImageViews inside (sometimes are drawables and other are transparents and we see background). In some elementes I want to add a color layout like wather ...
0
votes
2answers
120 views

button click shows next picture from database in android

So I have been scratching my head and trying to figure out how to do it. TO give some more info: I have a gridview with a bunch of pictures taken from a database. When someone clicks a picture, a ...
0
votes
1answer
79 views

Why can't I get an imageview out of a gridview by position in android?

I'm trying to retrieve an imageview based on it's position in a grid view. E.g: int lastvisibleposition = gridView.getLastVisiblePosition(); int firstvisibleposition = ...
0
votes
1answer
274 views

(Android - xml) Gridview and ImageView scale type centerCrop

I'm trying to show a list of images in a GridView, and I want to crop only the center of the images in this list. So below is the layout of each image item: <?xml version="1.0" ...
0
votes
4answers
64 views

(Beginner) How do I automatically load images off of a website into an imageview

I'm building an app for a friends funny pictures website. I downloaded the gridview activity from the android developers website, but it just loads preset image urls, and that's simply not going to ...
1
vote
1answer
105 views

GridView Stretching ImageView Non-Uniformly

I have a GridView that I am using to display a row of 4 images, each image is 200 x 200 pixels. Here is the layout xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
3answers
176 views

Out of memory exception in case of simple static gallery

I am using a simple static image gallery in which i am loading atleast 28 images each of different size below 150kb. and i noticed two issues here: 1) Slow scroll 2) Out of memory exception when i ...
0
votes
1answer
48 views

How to create a Gird of images in android (like the attached screenshot)

I want to to create a grid of images like this : What I am asking about is how to make the images appear suitably, without being stretched or having a blink spaces. I just what the images (in ...
0
votes
2answers
100 views

how to make imageview in gridview link to activity

i have a gridview that content some image view, i want from this image view of the grid view can get onclick to change a activity, how can i do it, i try this code but it not work.in main activity a ...
0
votes
1answer
85 views

Setting images in gridview to transparent

So I have images in gridview. These images are shown in an activity. When one of the images is clicked, new activity is started with this image. In this activity, If user inputs correct answer, new ...
0
votes
1answer
83 views

Android GridView select an image

I have a GridView that is set with images. What I want to do is when the user selects (an image) it should show a mark on the image that was selected. How can I do that?
0
votes
2answers
250 views

Android Grid View image size according to screen density

The grid view of my application has 4 rows and 4 columns. I want this to fill half screen ,irrespective of the screen size of the device. How can i set the image view size accordingly
0
votes
3answers
581 views

The imageView onClick event of first item in GridView can't work or delay

I've designed a GridView with custom item layout and there is one ImageView on the top-left corner, another ImageView on the top-right corner, a main ImageView and Text in the center. I need to set ...
3
votes
1answer
254 views

Make stretch imageview in gridview

the image in my gridview isn't stretch. how can I stretch it? This is mine. This is what i want Gridview <ScrollView android:layout_width="match_parent" ...
0
votes
2answers
819 views

Lazy Loading in gridview

this is gridview that get image from json. I successfully with it. But when I get it from server it has a lot of images, that mean all images from server. I want to once load is 12 images. How can I ...
2
votes
0answers
238 views

Android scrollview of mixed size image views that fit together like tetris

What I am trying to create is a scrollview of images of all different sizes that fit together perfectly without any obvious rows or columns. each image represents a food and each food has a certain ...
0
votes
2answers
303 views

Android: GridView image's from json

i have problem with ImageView into GridView, I parse JSON, and i take url from json and put it to my ImageView into GridView, and i have a error with this can you help me? LogCat FATAL EXCEPTION: ...
0
votes
1answer
375 views

GridView scrolling is not smooth android

I have this gridview which loads images from sd card........problem is the scrolling is not at all smooth and i have no idea whats wrong with it......can someone one help me out with it?? private ...
0
votes
2answers
135 views

Taking much time to download & display images from url to Gridview

I have 20 URL of different images. I need to download the 20 images from the URL and display it in Grid view. For me its taking much time to download the image content. Following is the code i'm using ...
1
vote
2answers
96 views

setVisibility only works once on ImageView

I am trying to make views in a GridView become invisible and visible. I can make it work the first time I call INVISIBLE AND VISIBLE but subsequent attempts don't work. private void ...
0
votes
1answer
540 views

Gridview - click gridview item to show image in imageview

I follow this toturial Android Lazy Loading images and text in listview from http json data and now i change listview to gridview. My question is I want to click gridview item and it show image in ...
0
votes
0answers
52 views

Problems getting square-shaped views

I have a 2 column GridView. It contains imageviews. I want those imageviews to be perfectly square. Is there any way to get a square-shaped view without hardcoding values?
0
votes
1answer
441 views

How to display a set of images in GridView, with their normal size

If I have set of images with the same size 211px x 165px , how display them with a grid view with maintaining the original ratio between the height and the width. where it is required to display two ...
0
votes
1answer
192 views

How to view images in GridView with its original dimensions

I want to display a set of images in GridView (They have the same dimensions). Below the layout for the GirdView and the GirdView Item .. Teh problem is that the image height is stretched. why ? ...
0
votes
1answer
97 views

Android: 2 dimensions array of buttons with scrolls and zoom

I have a game with a two dimension array of ImageViews (64). I believe this isnt a efficient code and also gives me problems with scrolls (I can't move freely only horizontal or vertical). I would ...
1
vote
2answers
2k views

Android GridView Selected Item Background color change while pressing

I have the imageview using gridview in my android application.so while pressing the image in gridview,the background color want to change.if i return ,it will come to normal background color.How to do ...
2
votes
1answer
72 views

Getting the filename of a resource when onClick

I am going through android tutorials and android development websites. I came across the Gridview example here : http://developer.android.com/guide/topics/ui/layout/gridview.html#example In the ...
1
vote
0answers
232 views

ImageView in GridView on working properly

I have a stock check application wherein the materials are displayed in a grid and each grid element has an image of the material, edittext of quantity , check button and an image which turns red or ...
2
votes
0answers
147 views

How can i display galleryview, imageview and gridview in same activity

I have a gallery in my android application when I clicked on gallery item I want to display image and grid view. I done when i have only three images in gallery and in click it displayed correctly. ...
0
votes
2answers
361 views

How to change one Button background in a gridview? — Android

I have a GridView with 16 ImageView buttons. My program makes a random number and when the user clicks a button in the gridview, I want it to take the random number (0-15) and set the background of ...
0
votes
1answer
393 views

Android imageview to bitmap

I have an app in which i use a function to change a color into another color.The function works only on bitmaps, but it works great. I want to implement the same function inside of a gridview. ...
0
votes
1answer
513 views

GridView with images aligned bottom in a RelativeLayout

I've searched this forum up and down and found different solutions but none of them have worked as expected. I even tried looking at the Shelves project that's open sourced and that seemed much too ...
2
votes
2answers
282 views

statically create a gridview of 2X2 imageviews in Android

I'm trying to create a view that will include 4 imageView in a 2x2 formation. This is what I had in mind: <?xml version="1.0" encoding="utf-8"?> <GridLayout ...
0
votes
1answer
74 views

How do I add a background for each image in a Gridview?

I have created Gridview. I want to set background image (like glow in backside) for the selected image in Gridview. How can I do it?
0
votes
2answers
719 views

Android GridView stretchMode with Async ImageView Loading

I have the following GridView defined w/stretchMode set to "columnWidth". <GridView android:id="@+id/grid" android:layout_width="fill_parent" android:layout_height="wrap_content" ...
11
votes
3answers
2k views

ImageView ScaleType ignores padding

I have a Imageview set with a white background and 1dp padding, this creates a border-like effect, which is the wanted result. Now if I set the scaleType to centerCrop it ignores the padding on the ...
0
votes
1answer
108 views

Passing View based on drawables to ImageView

I've got something like this: view = gridView.getChildAt(position) All elements in gridView are drawables stored in drawable folder Now my question: How to pass view to imageView or how to get ...
0
votes
1answer
626 views

How to change image in GridView when clicked

i need some help for my project. i have an ImageView inside GridView. i have trouble to change the image when the image is clicked. Thanks in advance.
0
votes
1answer
126 views

How to set selector true on back to grid view

I use grid view here, and i do open an full image on click of grid view item When i do back press to my Grid view i want my last selector position true. please help me to find out this Thanks in ...
0
votes
1answer
96 views

Background sharing in GridView

Good day, I have some problem with my GridView. public View getView(int position, View convertView, ViewGroup parent) { ImageView imageView; if (convertView == null) { // if it's not ...
1
vote
2answers
691 views

Android GridView Items Resizing

I using a GridView to display a feed. If the entry has a background image for it, the image gets loaded from the device or the server. My problem is that when an image is loaded, the gridview's item ...
0
votes
1answer
328 views

Need to create a memory game in Android

I need to create an app or game inside of an app that takes in (downloads) a set of pictures from a website online and uses those photos as the cards in a game of concentration. I'm just looking for ...
0
votes
1answer
439 views

Change ImageView content within a GridView in Android

I am new to Android and Java. I am building an app that allows users to push a button which launches an image chooser where they can select from images on the sd card. The app loads with a grid view ...
0
votes
2answers
311 views

Android, how to reduce the height of image in image adapter?

In my activity i have to show some images. I used gridview in my activity and each row should shows 4 images (width of each image is 25% of screen). i need to reduce the height of image in same size ...
0
votes
1answer
470 views

how to show my url images in full screen?

i created one grid view application, it's working fine now showing all images in grid view. now i am trying to display selected image in full screen, but i am getting error. my grid view images are ...

1 2