Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
share|improve this question
I'm confused about what isn't working. This seems like it should be doing what you want... – Xymostech Dec 2 '12 at 17:02
width is OK, but animation's height is longer than screen's – atasoyh Dec 2 '12 at 17:05

1 Answer

You need to compare the ratio of the height and width of the image to the ratio of the height and width of the display.

var imageRatio = image.clientHeight / image.clientWidth;
var clientRatio = document.body.clientHeight / document.body.clientWidth;

if (imageRatio > clientRatio)
{
    image.style['height'] = document.body.clientHeight + 'px';
}
else
{
    image.style['width'] = document.body.clientWidth + 'px';
}
share|improve this answer
I tried it , this time animation's height and width are longer... – atasoyh Dec 2 '12 at 17:25
@atasoyh You're right, I think the updated answer is correct now... – Xymostech Dec 2 '12 at 17:30
I think; you compared ratios but, you didnt resize image for this ratios. I need resize image to screen's ratio? – atasoyh Dec 2 '12 at 17:52
I tried it here: jsfiddle Is this the functionality that you want? (You can resize the result box to simulate different widths and heights of the device) – Xymostech Dec 2 '12 at 18:49
my device screen is 480x800 pixels. But I cant see this pixels on webview? webView is fullscreen. Alsa why we can not set height and width, when I set two values, image is bigger than screen... I remind you that my image is animated-gif – atasoyh Dec 3 '12 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.