Android - Webview作为列表视图页脚无法正常工作

时间:2014-02-26 22:31:59

标签: android html android-listview android-webview

我正在尝试将Web视图显示为列表视图的页脚。

将脚本添加到html文件并放在assets文件夹中 使用Web视图创建布局 将Web视图放置为页脚​​但我无法看到Web视图

WebView布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

        <WebView  
        android:id="@+id/webview_footer"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    />
</LinearLayout>
在assests文件夹中的

html文件:

<html>
<body>
<div id="ym_1234" class="ym"></div>
<script type="text/javascript">(function(e,t){if(t._ym===void 0){t._ym="";var m=e.createElement("script");
m.type="text/javascript",m.async=!0,m.src="//static.yieldmo.com/ym.min.js",(e.getElementsByTagName("head")[0]||e.getElementsByTagName("body")[0]).appendChild(m)}else t._ym instanceof String||void 0===t._ym.chkPls||t._ym.chkPls()})(document,window);
</script>
</body>
</html>

我添加页脚的片段代码:

ListView list = (ListView)view.findViewById(android.R.id.list);
WebView web;
        LayoutInflater inflaterOf = getActivity().getLayoutInflater();

        LinearLayout listFooterView = (LinearLayout)inflaterOf.inflate(com.philly.prosportsframework.R.layout.list_with_footer, null);
        web = (WebView)listFooterView.findViewById(R.id.webview_footer);
        web.getSettings().setJavaScriptEnabled(true);
        web.setWebViewClient(new WebViewClient());
        web.loadUrl("file:///android_asset/news_footer.html");

        list.addFooterView(listFooterView);

我只能看到列表但是没有看到页脚中的Web视图

1 个答案:

答案 0 :(得分:0)

一个简单的问题....你在设置适配器之前添加页脚吗?

list.addFooterView(listFooterView);
list.setAdapter(adapter);

无法从您的代码中读取...