I need to show an animation On SplashScreen for Android. I want to resize it for screen's height-width. I can succeed it fit to screen with using webView and javascript. But I cant resize it:)
I write my code, maybe somebody will need it..
This is html code in index.html ( I could write it on Java, but I cant show animated-gif that using )
<html>
<head>
<title></title>
</head>
<body style="padding: 0; margin: 0">
<script type="text/javascript">
function resize(image)
{
var differenceHeight = document.body.clientHeight - image.clientHeight;
var differenceWidth = document.body.clientWidth - image.clientWidth;
if (differenceHeight < 0) differenceHeight = differenceHeight * -1;
if (differenceWidth < 0) differenceWidth = differenceWidth * -1;
if (differenceHeight > differenceWidth)
{
image.style['height'] = document.body.clientHeight + 'px';
}
else
{
image.style['width'] = document.body.clientWidth + 'px';
}
// Optional: remove margins or compensate for offset.
image.style['margin'] = 0;
document.body.style['margin'] = 0;
}
</script>
<img src="file:///android_asset/html/screen1.gif"
onload="resize(this);"/>
</body>
</html>
And this is my WebView:
WebView webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.setVerticalScrollBarEnabled(false);
webView.loadUrl("file:///android_asset/html/index.html");