我正在创建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
。
请指导我
答案 0 :(得分:0)
我想这是不可能的,因为WebView
是在每个实例中运行单独的WebKit引擎的独立容器。
在您的情况下,一种可能性是使用单个TabHost
模拟WebView
用户界面。具体而言,您必须使用Web内容本身创建选项卡,以便您使用单个WebView
,其中包含4个不同选项卡的HTML。