I have an Android apk which starts webview and loads an url. Since it usually takes time to load the url, how can I display an image when the apk is loading? The image can be a logo, for example.
Thanks a lot.
I have an Android apk which starts webview and loads an url. Since it usually takes time to load the url, how can I display an image when the apk is loading? The image can be a logo, for example.
Thanks a lot.
use layout like this
<RelativeLayout>
<ImageView> //with log
<WebView>
<RelativeLayout>
When page loads Webview came in front of ImageView. or you can also hide it after page load.