RecyclerView项目点击监听器与DataBinding

4

我使用了一个BaseAdapter来处理所有布局项的绑定,实现了数据绑定的recycler view。

我尝试使用方法引用和Listener bindings来实现每个单独项的点击监听器,但是我无法做到这一点。

以下是我的代码。你能给我一个示例吗?它可以简单地检测recycler view中的每个单独项,并且我想为不同的目的添加每个单独项的点击监听器。谢谢!

MyBaseAdapter

public abstract class MyBaseAdapter extends RecyclerView.Adapter<MyBaseAdapter.MyViewHold> {





public class MyViewHold extends RecyclerView.ViewHolder implements View.OnClickListener {

    public ViewDataBinding binding;
    Context context;

    public MyViewHold(ViewDataBinding binding) {

        super(binding.getRoot());
        this.binding = binding;

        context = binding.getRoot().getContext();
        binding.getRoot().setOnClickListener(this);



    }

    // Here BR.pojo must be matched to layout variable name
    //our layout variable was
    /*
     <variable
        name="pojo"
        type="com.durbinlabs.databinding.POJO"
        />
     */
    public void bind(Object obj) {
        binding.setVariable(BR.pojo, obj);
        binding.setVariable(BR.food, obj);


        binding.executePendingBindings();



    }


    @Override
    public void onClick(View view) {
        // for all view

    }




}


@Override
public MyViewHold onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
    ViewDataBinding binding = DataBindingUtil.inflate(layoutInflater, getLayoutIdForType(viewType)
            , parent, false);

    return new MyBaseAdapter.MyViewHold(binding);
}

@Override
public void onBindViewHolder(MyViewHold holder, int position) {
    holder.bind(getDataAtPosition(position));

    Log.d("click", "" + holder.getItemId());

}


public abstract Object getDataAtPosition(int position);

public abstract int getLayoutIdForType(int viewType);}

我的POJO类

public class POJO extends BaseObservable {
int img;
String name;

public POJO(int img) {
    this.img = img;
}

public void setImg(int img) {
    this.img = img;
}

public int getImg() {
    return img;
}

public POJO(int img, String name) {
    this.img = img;
    this.name = name;
}

@Bindable
public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
    notifyPropertyChanged(BR.name);
}}

Recycler View 行布局(每个项目)

<layout xmlns:android="http://schemas.android.com/apk/res/android">

<data>

    <variable
        name="pojo"
        type="com.durbinlabs.databinding.POJO" />


</data>

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:padding="6dip">

    <ImageView

        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="6dip"
        android:contentDescription="TODO"
        android:onClick="@{handlers::imgClick}"
        android:src="@mipmap/ic_launcher" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="26dip"
        android:layout_alignParentRight="true"
        android:layout_centerInParent="true"
        android:layout_toRightOf="@id/icon"
        android:ellipsize="marquee"
        android:maxLines="1"
        android:text="@{pojo.name}"
        android:textColor="@android:color/black"
        android:textSize="12sp" />


</RelativeLayout>

适配器

public class Adapter extends MyBaseAdapter  {

private List<POJO> itemList;
Context context;

public Adapter(List<POJO> itemList) {
    this.itemList = itemList;
}

public Adapter(List<POJO> itemList, Context context) {
    this.itemList = itemList;
    this.context = context;



}

@Override
public Object getDataAtPosition(int position) {
    return itemList.get(position);
}

@Override
public int getLayoutIdForType(int viewType) {
    return R.layout.rowlayout;
}

@Override
public int getItemCount() {
    return itemList.size();
}}

你的 MyViewHold 中的 @Override public void onClick(View view) { // for all view } 是空的。在里面放一个日志,然后尝试点击你的 recyclerView 中的一个项目。 - dotGitignore
1个回答

6
在你的适配器类中尝试此操作,而不是基本适配器。
  holder.binding.getRoot().findViewById(R.id.icon).setOnClickListener(
            new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    Toast.makeText(context, "clicked", Toast.LENGTH_SHORT).show();
                }
            }
    );

4
如果我们将其与MVVM相关联,那么如何使其在Model类中工作?我认为在MVVM情况下不应该使用findViewById吗? - suv

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接