0

我正在创建android application using Tabhost并拥有以下内容

1. App having 4 tabs
2. Each tab in Tabhost having WebViews. 
3. Loaded local HTML files with these WebViews.  
4. 4 Local HTML files having more than 8 js files. 
5. but 8 js files are same for all HTML files

问题:我可以在每个 HTML 文件中分别加载 8 个 js 文件。这会影响性能

预期:我们可以加载all java script files in Layout.cshtml file when we using ASP.NET MVC pages. 就像我想要的那样load all js files common for all local HTML files

请指导我

4

1 回答 1

0

我想这是不可能的,因为WebViews 是在每个实例中运行单独的 WebKit 引擎的独立容器。

在您的情况下,一种可能性是TabHost使用单个WebView. 具体来说,您必须使用 Web 内容本身创建选项卡,以便使用单个WebView,其中包含其中 4 个不同选项卡的 HTML。

于 2013-03-25T05:15:58.257 回答