我一直在做一个非常简单的任务,但它让我非常生气,以至于我从头上拔掉了每根头发(谚语 - 我已经秃了)
我有一个简单的LISTVIEW。在行的模板中。我只有一个WebView。
我需要有一个webview,因为我会渲染一些包含链接等的html,在listview中最多行数也不会超过5个。
我的活动代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AboutMofa" >
<ListView
android:id="@+id/aboutContentList"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
我的列表视图模板
<?xml version="1.0" encoding="utf-8"?>
<WebView
android:id="@+id/webviewContent"
android:layout_width="wrap_content"
android:layout_height="@dimen/aboutContentBox" />
和我的适配器getView
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.web_view_row, parent, false);
WebView w = (WebView) rowView.findViewById(R.id.webviewContent);
w.loadUrl("www.yahoo.com");
return rowView;
据我所知,它与listview吸收触摸并且不让webview接收它们有关,因此不允许我滚动。
请帮助我。
答案 0 :(得分:0)
请记住,如果需要,也可以在TextViews中显示格式化的HTML。
无论如何,覆盖ListView的onTouch,调用super方法然后返回false。事件未被消耗,因为您返回false并且应该开始的操作仍然开始。