无法单击其行由WebView组成的ListView [英] Can't click on ListView whose rows are made of WebViews

查看:78
本文介绍了无法单击其行由WebView组成的ListView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个扩展 ListView 的活动 我使用的ListView是 ArrayAdapter 的扩展,并且ListView的每一行主要由 WebView

I have an Activity which extends ListView The ListView that I use is an extension of ArrayAdapter and each row of the ListView primarily consists of a WebView

问题是触摸WebView不会调用 OnListItemClick .

The problem is that touching the WebView does not call OnListItemClick.

关于如何能够触摸Web视图并调用OnListItemClick的任何想法? 还是我做错了什么? 谢谢!

Any thoughts on how I can be able to touch the webview and call OnListItemClick? Or is there something else that I'm doing wrong? Thanks!

这是Activity类的框架,以及布局的相关XML文件

Here is a skeleton of the Activity class, along with the relevant XML files for the layout

PS,我尝试在布局中设置android:clickable ="false",但这不能让我单击ListView的行. 有趣的是,我可以仍然滚动列表,但我无法单击!

PS, I've tried setting android:clickable="false" in my layout, but this doesn't let me click on the rows of my ListView. Interestingly, I can still scroll through the list, but I just can't click!

public class ListOfItemsFromTopicActivity extends ListActivity {
    private Topic t;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.items_from_topic_skeleton);

        TopicFactory tf                 = new TopicFactory();
        t                               = tf.build_topic(3);
        ListView itemlist               = getListView();
        ListOfItemsAdapter adapter      = new ListOfItemsAdapter(this, R.layout.items_from_topic_row, t.getItems());
        itemlist.setAdapter(adapter);
    }

    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
        // do some stuff that never gets done
    }

    private class ListOfItemsAdapter extends ArrayAdapter<Item> {

        private ArrayList<Item> items;
        private int                     text_view_resource_id;
        private LayoutInflater          layout_inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        public ListOfItemsAdapter(Context context, int a_text_view_resource_id, ArrayList<Item> some_items) {
            super(context, a_text_view_resource_id, some_items);
            this.items                  = some_items;
            this.text_view_resource_id  = a_text_view_resource_id;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View v              = layout_inflater.inflate(this.text_view_resource_id, null);
            Item o              = items.get(position);
            WebView page        = (WebView)v.findViewById(R.id.item);
            page.loadDataWithBaseURL("fake://a/bcde", o.getShort_title(), "text/html", "utf-8", "");
            return v;
        }
    }
}

items_from_topic_skeleton.xml

items_from_topic_skeleton.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_height="fill_parent"
              android:layout_width="fill_parent"
              android:orientation="vertical"
        >
    <TextView
            android:background="@drawable/blackgrad"
            android:gravity="center"
            android:id="@+id/section_title"
            android:layout_height="50dip"
            android:layout_width="fill_parent"
            android:textColor="#ffffff"
            android:textSize="18sp"
            />
    <ListView
            android:background="#ffffff"
            android:cacheColorHint="#ffffffff"
            android:id="@android:id/list"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent"
            />
</LinearLayout>

items_from_topic_row.xml

items_from_topic_row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:padding="5dip"
        >
    <LinearLayout
            android:gravity="center"
            android:layout_height="60dip"
            android:layout_width="fill_parent"
            android:orientation="horizontal"
            >
        <LinearLayout
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:minHeight="55dip"
                android:orientation="horizontal"
                android:padding="5dip"
                >
            <WebView
                    android:id="@+id/item"
                    android:layout_height="fill_parent"
                    android:layout_width="fill_parent"
                    android:scrollbars="none"
                    />
        </LinearLayout>
        <ImageView
                android:id="@+id/disclosure"
                android:layout_height="29dip"
                android:layout_width="29dip"
                android:paddingRight="5dip"
                android:src="@drawable/disclosure"
                />
    </LinearLayout>
</LinearLayout>

推荐答案

如果将可聚焦元素添加到ListView,则将导致ListView项不再可用.尝试在WebView上设置android:clickable = false.

If you add a focusable element to a ListView, it causes the ListView items to no longer be selectable. Try setting android:clickable = false on your WebView.

这篇关于无法单击其行由WebView组成的ListView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆