NativeScript Core

Activity Indicator

The ActivityIndicator represents a UI widget which displays a progress indicator hinting the user for some background operation running like loading image, data, accepting a request, etc. We can control its behavior by setting or binding to its boolean property busy.

Usage

You can work with its boolean busy property and set it to true or false, thus displaying or hiding the control.

<ActivityIndicator busy="{{ isBusy }}" loaded="indicatorLoaded"/>

Improve this document

Demo Source


Styling

The ActivityIndicator supports styling the color (default value is blue) and backgroundColor (default value is transparent) properties.

<ActivityIndicator busy="true" color="red" width="100" height="100"/>               
nativescript-theme-core CSS class Description
activity-indicator Styles the color of the indicator in sync with the main theme color.

Improve this document

Demo Source


Tips And Tricks

Change UIActivityIndicatorViewStyle for iOS

<ActivityIndicator loaded="onLoaded" busy="true" backgroundColor="red" width="100" height="100"/>               

Creating ActivityIndicator via Code-Behind

Dynamic code-behind creation of ActivityIndicator and showing the indicator while image is loading.

const myloadingObject = { isLoading: true };

const indicator = new ActivityIndicator();
// Bind the busy property of the indicator to the isLoading property of the image
indicator.bind({
    sourceProperty: "isLoading",
    targetProperty: "busy"
}, myloadingObject);

console.log(indicator.busy); // busy is a writable property
myStack.addChild(indicator);

Improve this document

Demo Source


Properties

Name Type Description
busy boolean Gets or sets a value indicating whether the widget is currently displaying progress.

Events

Name Description
busyChange Emitted when the ActivityIndicator busy property is changed.
loaded Emitted when the view is loaded.
unloaded Emitted when the view is unloaded.
layoutChanged Emitted when the layout bounds of a view changes due to layout processing.

API References

Name Type
ActivityIndicator Module
ActivityIndicator Class

Native Component

Android iOS
android.widget.ProgressBar (indeterminate = true) UIActivityIndicatorView