How To Hide Webview Content Behind The Progressdialog In Android Studio
How can I hide everything behind the ProgressDialog and only show them only after getting completely loaded? Actually I need a white screen behind the dialog above my WebView conte
Solution 1:
Give the layout you want to hide an ID in the xml files, then find that layout in your activity/fragment, and then you can use '.setVisibility(View.GONE);" to hide it as you want, or '.setVisibility(View.VISIBLE);" to show it.
Then simply hide it by default, and when you got your data, show it.
Post a Comment for "How To Hide Webview Content Behind The Progressdialog In Android Studio"