Questions tagged [image-loading]
386 questions
-1
votes
2 answers
How to show progressbar using Volley/ Glide/Picasso or other , while image downloading from server
I want to show progress bar(showing percentage) using Volley/ Glide/Picasso or other network call libraries. There are a lot of solutions but not by the Volley/ Glide/Picasso, how can I get file image size before downloading and with time…

M.ArslanKhan
- 3,640
- 8
- 34
- 56
-1
votes
3 answers
Cannot resolve method in Picasso method .load
Picasso image loading library shows error while use with:
ColorDrawable cd = new ColorDrawable(ContextCompat.getColor(mContext,R.color.light_thirty_alpha));
Picasso.with(mContext)
.load(cd)
.fit().centerCrop()
…

Anant Shah
- 3,744
- 1
- 35
- 48
-1
votes
4 answers
How to show the loader image until the page data loads?
I'm a newbie to the concept of displaying loaded image until the data loads. The time to load the data is too much so till then I want to display the loader image. Can anyone help me in this regard? For your reference I'm putting below the code from…

PHPLover
- 1
- 51
- 158
- 311
-1
votes
1 answer
ImageLoader NullPointerException for an off-screen, SlidingMenu item?
I'm parsing a JSON response from a weather feed and the data I receive includes a url to an icon that corresponds with the conditions, then I display that icon in an ImageView. I was able to make this work in a sandbox app before moving the package…

es0329
- 1,366
- 1
- 18
- 35
-1
votes
5 answers
I need to optimize UITableViewCell image loading
I have a custom UITableViewCell. Each cell has an unique image.
I have an image loader class. I passed a dictionary to ImageLoader's method. A dictionary composed by image url and some other information. This code works well when we scroll down…

Voloda2
- 12,359
- 18
- 80
- 130
-2
votes
1 answer
Saved HTML files are not loading images
Between 2006 - 20012, Using IE6 & IE7 I used to Save webpages onto my local computer. I used to save it as webpage complete, which used to save the HTML file and all other images in a separate folder in the same location.
I used to be able to open…

Jerome
- 1
- 2
-2
votes
1 answer
Why do the images in my html email fail to load?
The images in my html email fail to load completely. The email was written in dreamweaver. I've tested the email on various clients: hotmail, gmail, outlook on mac and windows. The images load fine on the others, just not completely on…

greggh
- 3
- 5
-2
votes
2 answers
Loading image show when i click a button in jquery/javascript
When i click the button, it will be navigate to another page, before the page loading completely i want to show the loading gif image.(without using Ajax)

user1225946
- 33
- 1
- 2
- 4
-3
votes
1 answer
Loading image via picasso in listview in android
I am using code below for loading image via picasso in list view
ListAdapter adapter = new SimpleAdapter(
tampil_semua_laporan.this, list, R.layout.list_item,
new…

Ones
- 1
- 2
-4
votes
3 answers
Unable to use Piccaso in Fragments
Here's my code where I've got error in
Picasso.with(ThreeFragement.this).load(model.getMoviePoster()).into(viewHolder.ivMoviePoster);
even if I'm setting ThreeFragment to getContext, it is not working.
The whole code is written…

Ayush Shrivastava
- 109
- 1
- 7
-4
votes
2 answers
How to solve java.lang.OutOfMemoryError while loading the activity
Every time I load certain activity called ProductActivity, I encounter the following error:
Fatal Exception: java.lang.OutOfMemoryError: Failed to allocate a 15694612 byte allocation with 2874400 free bytes and 2MB until OOM
at…

M thaker
- 383
- 1
- 4
- 15