Android - Can't hide progress bar

后端 未结 4 977
误落风尘
误落风尘 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:41

    A solution that worked for me was to hide the view in XML:

    android:visibility="gone"

    and then unhide/hide it at runtime when needed:

    yourProgressBar.setVisibility(View.VISIBLE) // or View.VISIBLE depending on situation

提交回复
热议问题