捕获单击Android中的自定义列表视图

时间:2011-02-21 05:52:05

标签: android listadapter

我使用自定义XML文件在ListActivity中创建绑定我的db游标。 XML文件中的每个项目都有2个按钮。我想捕获按钮的click事件和列表中的位置。

这是我的XML文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView android:id="@+id/smListName" android:paddingTop="2dip" android:paddingBottom="3dip" android:layout_width="wrap_content"
        android:layout_height="fill_parent" android:textSize="22dip" />
    <Button android:id="@+id/smListCompleted" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="right" android:textStyle="bold" android:textColor="#0000ff"  />
    <Button android:id="@+id/smListNotCompleted" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="right" android:textColor="#ff0000" 
        android:textStyle="bold" />
</LinearLayout>

这就是我绑定的方式

db = openOrCreateDatabase("ITC", MODE_PRIVATE, null);
Cursor outlets = db.rawQuery("Select s.salesmanid as _id, s.name ...", null);
this.setListAdapter(new SimpleCursorAdapter(this, R.layout.salesmanlist, outlets, new String[] { "name", "complete", "incomplete" }, new int[] {
R.id.smListName, R.id.smListCompleted, R.id.smListNotCompleted }));
db.close();

我没有使用自定义适配器。现在我想捕获smListNotCompleted和smListCompleted的单击以及行位置。

由于

3 个答案:

答案 0 :(得分:7)

您必须使用新的适配器。在实现之前尝试理解这背后的概念:

class YourNewAdapter extends SimpleCursorAdapter
{

 public View getView(int position, View convertView, ViewGroup parent)
 {

        View v = convertView;
        LayoutInflater vi = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = vi.inflate(id, null);

         btn = (Button)v.findViewById(R.id.yourbutton);  
         btn.setOnClickListener(YourActivity.this);
         btn.setId(position);

         btn.setText("sometext");

         v.setLongClickable(true);

          }
            return v;
     }
 }

并在您的活动中

public void onClick(View v)
{
        if(v.getId() == R.id.yourbutton id)
        {
               // do what you want you can also put this on click listener in the getview fn 
        }
    }

答案 1 :(得分:4)

我在listadapter中使用了click事件,并将位置id放入了按钮标记

Button editButton = view.FindViewById(Resource.Id.editPaymentButton_2) as Button;
editButton.Tag = position;
editButton.Clickable = true;
editButton.Click += editButton_Click;

这是我在GetView中绑定事件的事件

void editButton_Click(object sender, EventArgs e)
    {
        if (editButtonClicked)
        {
            return;
        }
        editButtonClicked = true;
        var button = sender as Button;
        if (button == null)
            return;
        //OnEdit((Entities.PaymentTemplate)GetItem((int)button.Tag));
    }

答案 2 :(得分:2)

由于您需要使用2个按钮为自定义列表中的两个按钮单击事件;您需要创建一个自定义列表适配器,您可以在其中单独为这两个按钮添加单击事件,您也可以单击该位置。