1

嗨,这听起来像是一个愚蠢的问题,但它已经困扰了我几天,我还没有在互联网上找到答案。在不覆盖 onItemclick 方法的 android Listview 中,有没有其他方法可以获得行的位置。

4

1 回答 1

1

我使用 setTag()/getTag() 方法来获取项目的位置。在列表适配器的 getView() 方法中,使用setTag("position")方法将项目的位置设置为行项目的标记(在您的情况下为按钮)。
当单击任何一行中的按钮时,将为该按钮调用 onClick() 方法,在 onClick() 方法中,您可以使用getTag()方法来获取位置。对所有行按钮使用与 onClick 例程相同的方法。

示例代码:列表项可能是这样的

<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" >

<Button
    android:id="@+id/button1"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="117dp"
    android:background="@drawable/grad"
    android:onClick="onButtonClick" />

getView() 方法可能是这样的:

public View getView (int position, View convertView, ViewGroup parent) {
    ...
    ...
    button.setTag(position);
    ...
}

onClick 例程可能是这样的:

public void onButtonClick(View v) {
    String tag = v.getTag().toString();
    if(tag != null) {
         int position = Integer.parseInt(tag);
    }
    ...
    ...
}
于 2012-08-28T08:58:18.510 回答