Questions tagged [activity-indicator]

195 questions
4
votes
2 answers

add an activity indicator to show when the app is busy in jquery mobile, phonegap / cordova

I want to display an activity indicator when my app is busy on ios. So far I haven't been able to get it working. I have tried using: navigator.notification.activityStart(); Which seems like it's not supported in most recent versions of…
William Allen
  • 93
  • 1
  • 4
4
votes
3 answers

ActivityIndicator not spinning or animated only static image on Android

Activity Indicator in react native working fine on IOS but its not spinning or animating on android, any help ???
4
votes
2 answers

Activity Indicator while loading WebView Xamarin forms

I want to load an Activity indicator first when the WebView is loading data , then it turns Invisible after loading data. Below is my Xaml Code:
user7615935
4
votes
1 answer

Swift - Implement global activity indicator

I'm currently attempting to make a global activity indicator in swift, which is called whenever a fetch to the api is made. The idea is that the activity indicator will appear in the top left of a navigation bar (navigation view controller's child),…
Rob Sparks
  • 87
  • 2
  • 8
4
votes
2 answers

Xamarin.Forms implement AndHud and BTProgressHud

Can anyone point me to a Xamarin.forms sample that utilises AndHud for Android and BTProgressHud for iOS (or anything similar)? I know there is the ACR-Xamarin-Forms example here https://github.com/aritchie/acr-xamarin-forms, but it is way too…
user1667474
  • 779
  • 6
  • 23
  • 34
3
votes
1 answer

How to customize MBProgressHUD view on UIImagePickerController?

I have inserted a MBProgressHUD view on my image picker controller. It should work as an indicator to take a photo. For this, I customized MBProgressHUD such as below. - (void) drawRect:(CGRect)rect { ... CGRect allRect = self.bounds; UIImage* image…
3
votes
0 answers

Custom Activity Indicator

I'm looking for a custom Activity Indicator for iOS which should look and work like on Facebook app (for iPhone) while loading images. Has anyone found such custom component?
Anand
  • 854
  • 10
  • 30
3
votes
1 answer

Why activity indicator takes nearly 3 seconds to start when I click button

I have ActivityIndicator in separate xaml file. Which I am using in MainPage xaml as CustomLoader. This CustomLoader visibility is being controlled by bool variable VisibleLoader
R15
  • 9,066
  • 8
  • 50
  • 105
3
votes
1 answer

How to put ActivityIndicator inside UIImage inside UITableView using Swift?

I have UITableView where each cell has one UIImage and the image is being downloaded from an API using JSON. I handled the initial images and data via Background Threading. However, as user scrolls down inside table view, images to other cells…
Vetuka
  • 1,078
  • 1
  • 14
  • 34
3
votes
1 answer

Activity Indicator in Tkinter?

Each OS has an activity indicator. OS X and iOS has a flower that lights up and fades each pedal in a circular pattern. Windows has a spinning blue disk thing. Android has a gray disk thing (I think it can be in a variety of other colors, too - IDK,…
ArtOfWarfare
  • 17,763
  • 14
  • 122
  • 177
3
votes
1 answer

jQuery global events and performance?

I was in search of a way to show a status indicator using jQuery and I found a solution in the jQuery Cookbook, it showed this solution (function($) { $(document).ready(function() { $('#ajaxStatus') .ajaxStart(function() { …
Ray
  • 11,211
  • 23
  • 84
  • 128
3
votes
1 answer

Activity indicator should be displayed when navigating from UITableView1 to UITableView2

I want to display an activity indicator when navigating form one UITableView1 to another UITableView2 and stop when the table is completely loaded. I am using XML parsing to get the cell content of UITableView2.
Warrior
  • 37,935
  • 44
  • 133
  • 211
3
votes
2 answers

Loading Indicator on Web View

My app shows articles from an RSS feed in a table view then when you select a row, opens a web view controller to show the article. I'm trying to add a loading indicator. If I select a row, the indicator will show briefly and then disappear before…
raginggoat
  • 3,450
  • 9
  • 42
  • 99
2
votes
5 answers

Show activity indicator animation when button pressed

I have a button called "Sync". When tapped / pressed it sends data to a webserver and retrieves the answer by the server (what takes a while and freezes the gui / button) so how do I add a "Please wait" and activity indicator until the data / answer…
Martin Huwa
  • 53
  • 1
  • 2
  • 6
2
votes
2 answers

How do you make a React Native ActivityIndicator appear after an onPress to show something is loading?

When navigating between Screen 1 and Screen 2, the user presses a button. After pressing, it can sometimes take a few seconds to before the app navigates them to the next screen, so it does not look like anything is happening. How would I go about…
1
2
3
12 13