将html表单放在Res文件夹的何处,以及如何在webview中显示此html表单



我有html表单。但我不明白这个html表单放在哪里。如何在web视图中显示表单。提前感谢

  <Html> 
    <Head>
    <Title>
    <Title>
    </head>
    <body>
    <table width="60%" align="center">
    <TR><TD colspan="2"><span class="style1">Post comments</span></TD>
    </TR>
    <form  action="http://www.indianexpress.com/ajax/saveComment.php" id="frmcommentmain" name="frmcommentmain" method="post">
    <input type="hidden" value="918703" name="storyId">
    <input type="hidden" value="172.16.24.10" name="ip_addr">
    <input type="hidden" value="0" name="parentcmtId">
    <TR><TD height="35">Name:</TD><TD><input type="text" name="name" tiptitle="Please enter your name">
      *</TD>
    </TR>
    <TR><TD>Email:</TD><TD><input type="text" name="email"  tiptitle="Please enter your email">
      *</TD>
    </TR>
    <TR><TD>Title:</TD><TD><input type="text" name="subject" tiptitle="Please enter subject">
      *</TD>
    </TR>
    <TR><TD>Comment:</TD><TD><textarea title="Please enter your comments"  rows="6" name="comment"></textarea>
      *</TD>
    </TR>
    <TR><TD colspan="2"><input type="checkbox" value="checkbox" name="checkbox">I agree to the terms of use.</TD></TR>
    <TR>
      <TD colspan="2">&nbsp;</TD>
    </TR>
    <TR>
      <TD colspan="2">&nbsp;</TD>
    </TR>
    <TR><TD colspan="2"><input type="Submit" name="submit" value="submit"></TD></TR>
    </form>
    </table>
    </body>
    </html>

我读了很多文章,但我没有得到关于放入html表单的答案。很多文章描述了在webview中从url加载数据,但我想在webview加载表单。

确实将您的html页面放在assets文件夹中。使用WebView 显示网页

WebView wv = (WebView)findViewById(R.id.webview);
wv.loadUrl("file:///android_asset/index.html");

我会将HTML内容存储在Android项目中assets文件夹中的一个文件中。然后,您应该能够从代码中读取文件并将其加载到Webview中。

最新更新