Android - Can't hide progress bar

后端 未结 4 1043
误落风尘
误落风尘 2021-01-21 05:19

So I\'ve checked the other questions to hide a progress bar but all seem to suggest doing what I\'m already doing.

I\'m trying to use

mProductListProgres         


        
4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-21 05:47

    I know that it is an old question. But I just spent a lot of time debugging similar situation. I could not hide ProgressBar on top of unityPlayer view.

    One more thing to ensure is that You are hiding it while in UI thread.

    To ensure surround Your UI code with:

        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                loadingIndicator.setVisibility(View.GONE);
            }
        });
    

提交回复
热议问题