Version: 2017.1

Handheld.StartActivityIndicator

Switch to Manual
public static void StartActivityIndicator ();

Description

Starts os activity indicator.

Please be warned that this informs os ui system to start. For actual animation to take effect you usually need to wait till the end of this frame. So if you want activity indicator to be animated during synced operation, please use coroutines.

    IEnumerator Load()
    {
        #if UNITY_IPHONE
            Handheld.SetActivityIndicatorStyle(iOS.ActivityIndicatorStyle.Gray);
        #elif UNITY_ANDROID
            Handheld.SetActivityIndicatorStyle(AndroidActivityIndicatorStyle.Small);
        #elif UNITY_TIZEN
            Handheld.SetActivityIndicatorStyle(TizenActivityIndicatorStyle.Small);
        #endif

Handheld.StartActivityIndicator(); yield return new WaitForSeconds(0); Application.LoadLevel(1); }

void OnGUI() { if( GUI.Button(new Rect(10, 10, 200, 200), "Load!") ) StartCoroutine(Load()); }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961