Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - what does requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS) do?

Pretty much in in the title.

Have seen this around and after a bit of searching can't seem to find out what it actually does or what indeterminate progress is.

requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS)

It's used for example by RoboSpice samples.

like image 744
mgibson Avatar asked Feb 01 '13 15:02

mgibson


1 Answers

Update: Currently this feature is deprecated and not supported on current devices, check the official documentation.

Original answer:

Simply rotating circle in top right corner in Actionbar which represent some background action.

enter image description here

Screenshot is from Sherlock Actionbar demos.

like image 108
ATom Avatar answered Sep 22 '22 01:09

ATom