Guest User

Untitled

a guest
Sep 14th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. How to create circular progressbar in Titanium Appcelerator?
  2. var activityView = Ti.UI.createView({visible: false});
  3. var activityIndicator = Ti.UI.createActivityIndicator({
  4. message: 'Loading...',
  5. height:'auto',
  6. width:'auto'
  7. });
  8. activityView.add(activityIndicator);
  9. activityView.show();
Add Comment
Please, Sign In to add comment