使用自定义适配器绕过 ListView 的 onListItemClick()
Posted
技术标签:
【中文标题】使用自定义适配器绕过 ListView 的 onListItemClick()【英文标题】:onListItemClick() is bypassed for ListView with a custom adapter 【发布时间】:2011-10-26 06:29:50 【问题描述】:我意识到关于这个问题有很多问题,但是将 row.xml 中的每个视图设置为 focusable="false" 和 focusableInTouchMode="false" 的解决方案不起作用,从ListActivity 和设置 setItemsCanFocus(false)。
奇怪的是,当注册上下文菜单时,长按有效。常规水龙头呢?没有。我尝试设置像 OnItemClickListener 这样的监听器无济于事。
我在某处读到,我可以通过覆盖适配器中的 getView() 来解决这个问题?我不太确定它是如何工作的。注意,我不想知道用户点击了哪个视图;我只关心列表行被单击以启动 onListItemClick() 中的相应代码。
也许我的 row.xml 中有些东西全错了?还是受我设置 ListView 适配器的方式影响(放置在 onResume() 而不是 onCreate() 来更新信息)?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical"
android:focusable="false"
android:focusableInTouchMode="false">
<TextView style="?android:attr/listSeparatorTextViewStyle"
android:id="@+id/listSectionHeader"
android:layout_width = "fill_parent"
android:layout_
android:paddingTop="2dp"
android:paddingBottom="2dp"
android:paddingLeft="5dp"
android:textColor="@android:color/white"
android:visibility="gone"
android:focusable="false"
android:focusableInTouchMode="false"/>
<RelativeLayout
android:orientation="horizontal"
android:layout_
android:layout_
android:background="@drawable/list_button"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="true"
android:longClickable="true"
>
<TextView android:id="@+id/itemID"
android:layout_
android:layout_
android:visibility="gone"
android:textStyle="bold"
android:layout_alignParentLeft="true"
android:focusable="false"
android:focusableInTouchMode="false"/>
<CheckBox
android:id="@+id/returnedCheckbox"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="10dp"
android:checked="false"
android:layout_
android:layout_
android:focusable="false"
android:focusableInTouchMode="false"
/>
<LinearLayout
android:layout_toRightOf="@id/returnedCheckbox"
android:layout_margin="5dp"
android:layout_centerVertical="true"
android:orientation="vertical"
android:layout_
android:layout_
android:focusable="false"
android:focusableInTouchMode="false">
<TextView
android:id="@+id/stuffName"
android:layout_
android:lines="1"
android:layout_
android:ellipsize="end"
android:scrollHorizontally="true"
android:text="Hey there"
android:textSize="25sp"
android:textColor="#FFF"
android:shadowColor="#000"
android:focusable="false"
android:focusableInTouchMode="false"
/>
<RelativeLayout
android:id="@+id/detailsLayout"
android:orientation="horizontal"
android:layout_
android:layout_
android:focusable="false"
android:focusableInTouchMode="false">
<TextView
android:id="@+id/dueListItem"
android:layout_
android:lines="1"
android:layout_
android:textSize="14sp"
android:text="@string/dueListing"
android:focusable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/dueDate"
android:layout_toRightOf="@id/dueListItem"
android:layout_marginLeft="2dp"
android:layout_
android:lines="1"
android:layout_
android:textSize="14sp"
android:text="HEHEHE"
android:focusable="false"
android:focusableInTouchMode="false"/>
<ImageView
android:id="@+id/starMark"
android:layout_alignRight="@id/detailsLayout"
android:layout_toRightOf="@id/dueDate"
android:layout_marginLeft="10dp"
android:layout_marginTop="2dp"
android:layout_
android:layout_
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:src="@drawable/list_starred"
android:visibility="invisible"
android:focusable="false"
android:focusableInTouchMode="false"/>
</RelativeLayout>
</LinearLayout>
<ImageView
android:id="@+id/contactPic"
android:layout_alignParentRight="true"
android:layout_
android:layout_
android:background="#FFF"
android:layout_margin="10dp"
android:layout_centerVertical="true"
android:scaleType="fitCenter"
android:padding="3dp"
android:focusable="false"
android:focusableInTouchMode="false"
/>
<ImageView
android:id="@+id/lentArrow"
android:visibility="invisible"
android:layout_alignParentRight="true"
android:layout_
android:layout_
android:src="@drawable/indicator_lent"
android:layout_marginTop="42dp"
android:layout_marginRight="1dp"
android:focusable="false"
android:focusableInTouchMode="false"/>
</RelativeLayout>
</LinearLayout>
【问题讨论】:
我不明白,您的标题说“使用自定义适配器绕过了 ListView 的 onListItemClick()”,这让我相信您编写了自己的适配器。但是然后你说“我在某处读到,我可以通过在我的适配器中覆盖 getView() 来解决这个问题?我不太确定它是如何工作的”。您是否编写了自己的适配器?如果你这样做了,我很确定你必须覆盖 getView()。 我只覆盖了 newView() 和 bindView()。对不起,我是新来的。我应该如何覆盖 getView()? 啊,好吧……看看下面的答案,他们会为你指明正确的方向:) 【参考方案1】:永远不会调用 Onlistitemclick,因为您的列表项中有一个可点击的视图。去掉复选框,看看你是否能够获得点击。
除了在项目布局中直接使用复选框之外,还有一种替代方法。如果适合您的需要,请使用android:choiceMode="multipleChoice"
进行列表视图。
【讨论】:
不幸的是,我的复选框的用途与我希望 onListItemClick 执行的操作大不相同。【参考方案2】:查看此链接了解如何创建自定义适配器:
http://android-er.blogspot.com/2010/06/using-convertview-in-getview-to-make.html
在 Override getView() 方法中,您只需将 row.setOnClickListener() 设置为在单击该列表项时执行您需要执行的操作。
理想情况下,您会使用 convertView 来填充 ViewHolder 类,这样您就不会在列表项已经创建时重新创建它们,但这是一个不同的问题。
编辑
这是扩展 SimpleCursorAdapter 的精简自定义实现:
public class CatchCursorAdapter extends SimpleCursorAdapter
private final Context mContext;
private final Cursor mCursor;
private final int layout;
private final LayoutInflater inflater;
private final class ViewHolder
public ImageView catchImage;
public ImageView catchStar;
public TextView catchSpecies;
public CatchCursorAdapter(Context context, int layout, Cursor cursor)
super(context, layout, cursor, new String[] , new int[] );
this.mContext = context;
this.mCursor = cursor;
this.inflater = LayoutInflater.from(context);
this.layout = layout;
@Override
public View getView(int position, View convertView, ViewGroup parent)
ViewHolder viewHolder;
if (convertView == null)
convertView = inflater.inflate(layout, parent, false);
viewHolder = new ViewHolder();
viewHolder.catchImage = (ImageView)convertView.findViewById(R.id.catch_image);
viewHolder.catchSpecies = (TextView)convertView.findViewById(R.id.catch_species);
viewHolder.catchStar = (ImageView)convertView.findViewById(R.id.catch_starfavorite);
convertView.setTag(viewHolder);
else
viewHolder = (ViewHolder)convertView.getTag();
convertView.setOnClickListener(new OnClickListener()
public void onClick(View v)
//Perform an action when this list item is clicked
);
viewHolder.catchStar.setOnClickListener(new View.OnClickListener()
@Override
public void onClick(View v)
//You can also have buttons within your list item that can be clicked
//independently of the parent list item.
);
//Set the rest of your views
return convertView;
【讨论】:
是的,没错。有关代码示例,请参阅我编辑的答案【参考方案3】:我不需要对我的适配器做任何事情; onListItemClick()
出于某种原因奇迹般地独自工作。我现在更加摸不着头脑了。
顺便说一句,我扩展了CursorAdapter
,而不是SimpleCursorAdapter
,我知道这有点不同。根据我的阅读,CursorAdapter
扩展只需要覆盖 newView()
和 bindView()
而不是基于此 http://www.workreloaded.com/2011/02/android-extending-cursoradapter-for-custom-listview/ 的通常 getView()。
【讨论】:
以上是关于使用自定义适配器绕过 ListView 的 onListItemClick()的主要内容,如果未能解决你的问题,请参考以下文章
使用自定义适配器实现过滤器的 ListView 正在获取 IndexOutOfBoundsException