Questions tagged [loading]

Loading refers to retrieving necessary information for display or functionality.

Loading refers to retrieving necessary information for display or functionality. It often occurs between a client and a server computer, and can be indicated with different animations. Use this tag when asking questions about how to load information and errors concerning loading.

3827 questions
56
votes
20 answers

"_Problem Loading Widget" message

When loading a widget if it cannot find a resource or something it says Problem Loading Widget. That's all! Amazing! This message remains on the home screen and does not even say which widget it had trouble loading. I figured it out by trial and…
Androider
  • 21,125
  • 36
  • 99
  • 158
53
votes
6 answers

Android Studio - automatic project load

I cannot find a way to prevent Android Studio from automatically loading the last project in use. I want it open me the beggining window with the list of projects available and not loading the last used automatically.
49
votes
5 answers

Dynamic loading of images in WPF

I have a strange issue with WPF, I was loading images from the disk at runtime and adding them to a StackView container. However, the images were not displayed. After some debugging I found the trick, but it really doesn't make any sense. I've…
sindre j
  • 4,404
  • 5
  • 31
  • 32
48
votes
4 answers

Get image dimensions with Javascript before image has fully loaded

I've read about various kinds of ways getting image dimensions once an image has fully loaded, but would it be possible to get the dimensions of any image once it just started to load? I haven't found much about this by searching (which makes me…
user828591
  • 1,212
  • 2
  • 17
  • 32
43
votes
2 answers

How do I properly load a BufferedImage in java?

Okay, so I've been trying to load a BufferedImage using this code: URL url = this.getClass().getResource("test.png"); BufferedImage img = (BufferedImage) Toolkit.getDefaultToolkit().getImage(url); This gives me a type cast error when I run it…
William
  • 8,630
  • 23
  • 77
  • 110
42
votes
5 answers

How to have AJAX trigger the browser's loading indicator

I'm making an ajax-enabled lab scheduling program, and some of the ajax operations aren't exactly quick. In Gmail, when you go to your inbox, send a message, etc. the browser acts like it's loading (In FF the stop button becomes enabled, the…
Michele N.
  • 421
  • 1
  • 4
  • 3
39
votes
10 answers

jQuery Ajax wait until all images are loaded

I'm trying to perform an Ajax call with jQuery which is working well. I use the success event to display the data. It seems however that success gets triggered as soon as the external HTML file gets loaded. If there are large images they keep…
robs
  • 649
  • 4
  • 13
  • 28
39
votes
4 answers

UIWebView finished loading Event

Is it possible to start an event when an UIWebView (Iphone) has finished loading the URL. How can I find out, the current URL of the UIWebView?
Ploetzeneder
  • 1,281
  • 4
  • 20
  • 34
38
votes
9 answers

Cant load a react app after starting server

(node:13176) [DEP_WEBPACK_DEV_SERVER_ON_AFTER_SETUP_MIDDLEWARE] DeprecationWarning: 'onAfterSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option. (Use node --trace-deprecation ... to show where the warning was…
Sagar Nilgar
  • 389
  • 1
  • 3
  • 4
38
votes
3 answers

Show spinning wheel dialog while loading data on Android

I want to show a spinning wheel dialog while my app loads some data: The spinning wheel dialog should show on a button click. I’m using the code below but it does now show the spinning wheel. What could be the problem? public void…
Kris
  • 3,709
  • 15
  • 50
  • 66
38
votes
23 answers

Ionic 4: "Loading Controller" dismiss() is called before present() which will keep spinner without dismissing

I used "Ionic Loading Controller" to show a spinner until the data is retrieved then it calls "dismiss()" to dismissed it. it works fine, but sometimes when the app already have the data, the "dismiss()" is called before the "create()" and…
rami bin tahin
  • 1,897
  • 2
  • 10
  • 16
37
votes
8 answers

difference between dynamic loading and dynamic linking?

Routine is not loaded until it is called. All routines are kept on disk in a re-locatable load format. The main program is loaded into memory & is executed. This is called Dynamic Linking. Why this is called Dynamic Linking? Shouldn't it be…
Luv
  • 5,381
  • 9
  • 48
  • 61
35
votes
7 answers

How to display a loading screen while site content loads

I'm working on a site which contains a whole bunch of mp3s and images, and I'd like to display a loading gif while all the content loads. I have no idea how to achieve this, but I do have the animated gif I want to use. Any suggestions?
user27171
  • 567
  • 2
  • 8
  • 11
34
votes
12 answers

How to show Loading Indicator in WebView Flutter?

I want to show Loading first before the web view data displayed on the screen. How can do that? This is my code: class WebDetailPage extends StatelessWidget { final String title; final String webUrl; final Completer
R Rifa Fauzi Komara
  • 1,915
  • 6
  • 27
  • 54
33
votes
3 answers

What is the opposite of lazy loading?

Is there a common term / catch-phrase for the opposite of lazy loading?
hakre
  • 193,403
  • 52
  • 435
  • 836