Questions tagged [android-lazyloading]
43 questions
0
votes
2 answers
Lazy loading images in ViewPager
So i have 6 categories of pictures and each category has like 150-200 pictures. Each picture has a size of 1MB-10MB. Im not sure how to optimise the loading of the pictures. My ViewPager shows 4 pictures at the same time from 1 category which is…

Daniel Storch
- 327
- 1
- 3
- 15
0
votes
1 answer
Load the images from the Gallery into gridview
This LazyLoading library helps me to load the images from the internet. Can i use this library to load the images from the gallery.
imageLoader.DisplayImage(url, image);
What should i send the argurment to display the image from the gallery
Note…

user3607798
- 769
- 2
- 7
- 15
0
votes
1 answer
iScroll5 Infinite scrolling - lazy loading
A am developing a list based app, wherein I am tryin to use iScroll5 to implement lot of animations and smooth scrolling functions. I would like to do lazy loading of my contents wherein I want to load first 50 list elements to DOM and based on user…

Bharath
- 573
- 1
- 7
- 20
0
votes
1 answer
GetView skip first image to be displayed due to repetition of position 0 three times
I am trying to load image in my gallery from Url using lazy load and everything works fine. It shows a ProgressBar until the image loads and gone when image is loaded from site. I have tried all the ways but it skip the first image to load and show…

Raheel Shahzad
- 136
- 2
- 13
0
votes
2 answers
Unable to set image from Json to imageView in android
I have made an activity in that i am parsing some data from Json webservice,I can parse all data successfully,And i get image name from that data,And I want top set it in the imageView of a ListView
activity.java
package com.epe.yehki.ui;
import…

Jigar jims
- 157
- 3
- 15
0
votes
1 answer
Need help on chris bane pull to refresh listview on how to implement load more?
i am currently using chris bane pull to refresh library and i need the method of the normal listview like ".getFirstVisiblePosition()" and ".setSelection(number)" would anyone know how to get this method and how to implemnt load more???
-thanks

Aeons
- 13
- 4
0
votes
1 answer
I am unsure how to use Async task for a lazy load?
This is basically a conceptual question, I tried reading docs but still I couldn't get a better understanding of the topic. I am not sure how I should use async task....
I have used the async task before for displaying an image from internet,
but I…

Ankit Srivastava
- 280
- 2
- 7
- 24
0
votes
2 answers
How to listen for imageview is on screen?
I have a long list of icons (about 30) in my layout, so I am getting an OutOfMemory error in Android 2.3.3.
What I want to do is creating Drawable object if only necessary (icon is visible on the current scroll).
But how to now if imageview is on…

previous_developer
- 10,579
- 6
- 41
- 66
0
votes
0 answers
viewpager gallery with circle indicator and lazy loading images
I want to load some images from web into a viewpager (Lazyloading) with viewpager having circle indicator.
I mean before loading images, a simple image is displayed and after image being loaded from web, they must be replaced.
I have a library for…

Namikaze Minato
- 1,332
- 4
- 23
- 41
0
votes
3 answers
Lazy loading of images very slow in LIstView
I have implemented lazy loading of images(from remote server) in my application(twitter kind of app) and the fetching part and loading the image into the exact imageView works perfectly fine. But the "getView" part of the adapter gets called only…

Jagadeesh
- 883
- 1
- 10
- 26
0
votes
1 answer
Asynchronous loading of images in gridview
Currently am using Zonghai-li's android-http-image-manager but the problem I am facing is that when the image is getting downloaded and at that moment when I scroll the grid-view list, that image get displayed in some other grid-cell. Can someone…

Ritesh Kumar Dubey
- 751
- 9
- 20
-1
votes
1 answer
Changing Image on Image View on click
change image on image view when click on next and prev button and image is coming from url.
i have try to change image from below method but this is not changing image.
imageLoader.displayImage(img[0], imgProperty);
imgProperty is a imageview and…

Renu Singh
- 111
- 3
- 10
-2
votes
2 answers
Lazy Loading Not Working in android
I show the images on listview and call lazy loadiing in list Adapter class, for the show images on list view it,s working fine . Means Images load properly.
But i implement list view on item click listener and image url pass to another class and…

Kuldeep
- 367
- 2
- 7
- 19