活动类代码:

conversationList = (ListView)findViewById(android.R.id.list);
ConversationArrayAdapter conversationArrayAdapter=new  ConversationArrayAdapter(this, R.layout.conversation_list_item_format_left, conversationDetails);
conversationList.setAdapter(conversationArrayAdapter);
conversationList.setOnItemClickListener(new AdapterView.OnItemClickListener(){ 
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
        Log.d("test","clicked");
    }
});

Adapter类中的getView函数:

if (v == null) {                                
    LayoutInflater vi = (LayoutInflater)ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    if(leftSideMessageNumber.equals(m.getTo())) {
        v = vi.inflate(R.layout.conversation_list_item_format_left, null);
    } else {
        v = vi.inflate(R.layout.conversation_list_item_format_right, null);
    }
}

在膨胀时使用两个xml会有问题吗?


当前回答

如果你想同时使用简单点击和长时间点击列表视图项,更好的实现方式是使用上下文菜单长时间点击。避免使用setItemLongClickListener,特别是当你的列表视图有多行布局时。

其他回答

在列表视图的自定义行布局中使用下面的代码

 android:focusable="false"
 android:clickable="false"

对于我的列表,我的行有其他可以点击的东西,比如按钮,所以做一个毯子blocksDescendants是行不通的。相反,我在按钮的xml中添加了一行:

    android:focusable="false"

这样可以防止按钮阻塞对行的单击,但仍然允许按钮接受单击。

我也遇到了同样的问题,尝试了所有提到的解决方案都无济于事。通过测试,我发现使文本可选会阻止侦听器被调用。通过将它切换为false,或者删除它,我的监听器再次被调用。

android:textIsSelectable="false"

希望这能帮助像我这样被困住的人。

我刚从这里找到了一个解决方案,不过是通过深度点击。

如果列表的任何行项包含可聚焦或可点击的视图,那么OnItemClickListener将不起作用。

行项必须具有类似的参数 android:descendantFocusability = "blocksDescendants"。

在这里您可以看到列表项应该是什么样的示例。 你的列表项xml应该是… row_item.xml (your_xml_file.xml)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:baselineAligned="false"
    android:descendantFocusability="blocksDescendants"
    android:gravity="center_vertical" >

    // your other widgets here

</LinearLayout>

问题是你的布局包含可聚焦或可点击的项目。 如果视图包含可聚焦或可点击的项,OnItemCLickListener将不会被调用。

点击这里了解更多信息。

如果不是这样的话,请发布一个你的布局xml。