2016-12-22 9 views
0

Webビュー内にWebページをロードしようとしています - https://netbanking.hdfcbank.com/netbanking/。私は同じことが他のアプリのWebViewのとクロムでレンダリング取得されて見ることができる私は、DOMをレンダリング見ることができますが、フレームの高さは0Webviewがフレームセットをレンダリングできません

<html><head> 
<title>Welcome to HDFC Bank NetBanking</title> 
<script language="javascript"> 
    var daemon   = 'NETBANKING'; 
    var p_remoteaddress = ''; 
    var RsaAuthReq  = ''; 

    var l_path = window.location.pathname; 

    if(l_path == undefined || l_path == '' || l_path.indexOf("/netbanking") < 0){ 
     window.location.href = window.location.protocol + "//" + window.location.host +"/netbanking"; 
    } 

</script> 
</head> 
    <frameset border="false" frameborder="O" framespacing="0" rows="*" cols="*"> 
     <frameset border="false" frameborder="O" framespacing="0" rows="*,30" cols="*"> 
      <frame marginwidth="0" marginheight="0" name="login_page" src="RSLogin.html?v=7" noresize="true" scrolling="yes"> 
      <frame marginwidth="0" marginheight="0" name="footer" src="footer.html" noresize="true" scrolling="no"> 
     </frameset> 
    </frameset> 

</html> 

です。

答えて

0

webviewはwrap_contentで、match_parentに変更しました。

関連する問題