0

我有这个适配器类,其中有一个带有列表的对象。

public class ProductAdapter extends RecyclerView.Adapter<ProductAdapter.ProductViewHolder> {
private Context context;
private Shop shop;

public ProductAdapter(Context context, Shop shop) {
    this.context = context;
    this.shop = shop;
}

@Override
public ProductViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater inflater = LayoutInflater.from(parent.getContext());
    View v = inflater.inflate(R.layout.product_row, parent, false);
    return new ProductViewHolder(v);
}

@Override
public void onBindViewHolder(ProductViewHolder holder, int position) {
    holder.tvProductTitle.setText(shop.products.get(position).getTitle());
    holder.tvProductDescription.setText(shop.products.get(position).getDescription());
    Glide.with(context)
            .load(shop.products.get(position).getImageUrl())
            .placeholder(android.R.drawable.ic_menu_upload_you_tube)
            .error(android.R.drawable.stat_notify_error)
            .diskCacheStrategy(DiskCacheStrategy.RESULT)
            .into(holder.ivProduct);
}

@Override
public int getItemCount() {
    if (shop.products != null) {
        return shop.products.size();
    }
    return 0;
}

public static class ProductViewHolder extends RecyclerView.ViewHolder {
    private TextView tvProductTitle, tvProductDescription;
    private ImageView ivProduct;

    public ProductViewHolder(View itemView) {
        super(itemView);
        tvProductTitle = (TextView) itemView.findViewById(R.id.tvProductTitle);
        tvProductDescription = (TextView) itemView.findViewById(R.id.tvProductDescription);
        ivProduct = (ImageView) itemView.findViewById(R.id.ivProduct);
    }
}

public interface ClickListener {
    void onClick(View v, int position);

    void onLongClick(View v, int position);
}

public static class RecyclerTouchListener implements RecyclerView.OnItemTouchListener {
    private GestureDetector gestureDetector;
    private ProductAdapter.ClickListener clickListener;

    public RecyclerTouchListener(Context context, final RecyclerView recyclerView, final ProductAdapter.ClickListener clickListener) {
        this.clickListener = clickListener;
        gestureDetector = new GestureDetector(context, new GestureDetector.SimpleOnGestureListener() {
            @Override
            public boolean onSingleTapUp(MotionEvent e) {
                return true;
            }

            @Override
            public void onLongPress(MotionEvent e) {
                View child = recyclerView.findChildViewUnder(e.getX(), e.getY());
                if (child != null && clickListener != null) {
                    clickListener.onLongClick(child, recyclerView.getChildAdapterPosition(child));
                }
            }
        });
    }

    @Override
    public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
        View child = rv.findChildViewUnder(e.getX(), e.getY());
        if (child != null && clickListener != null && gestureDetector.onTouchEvent(e)) {
            clickListener.onClick(child, rv.getChildAdapterPosition(child));
        }
        return false;
    }

    @Override
    public void onTouchEvent(RecyclerView rv, MotionEvent e) {

    }

    @Override
    public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {

    }
}

我在我的片段中使用了这个适配器,我可以从 recyclerview 中单击一个项目,这将打开另一个带有所选产品及其参数的活动。而不是单击整个项目,我想单击它的一部分(比如说 imageview),它的作用与现在相同。但是,我还想在 recyclerview 项目本身中放置一个复选框,该复选框将具有不同的功能。目前,我无法在适配器类中使用意图。现在的设置方式我只能单击整个项目。我怎样才能让它像我上面解释的那样工作?

public class ProductsFragment extends android.support.v4.app.Fragment {
private RecyclerView rvProduct;
private RecyclerView.LayoutManager layoutManager;
private ProductAdapter productAdapter;

public static ProductsFragment newInstance(Bundle args) {
    ProductsFragment fragment = new ProductsFragment();
    fragment.setArguments(args);
    return fragment;
}

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View v = inflater.inflate(R.layout.fragment_products, container, false);
    rvProduct = (RecyclerView) v.findViewById(R.id.rvProduct);
    rvProduct.setHasFixedSize(true);
    layoutManager = new GridLayoutManager(getContext(), 2);
    rvProduct.setLayoutManager(layoutManager);
    Bundle bundle = getArguments();
    final Shop shop = (Shop) bundle.getSerializable("shop");
    productAdapter = new ProductAdapter(getContext(), shop);
    rvProduct.setAdapter(productAdapter);
    productAdapter.notifyDataSetChanged();

    rvProduct.addOnItemTouchListener(new ProductAdapter.RecyclerTouchListener(getContext(), rvProduct, new ProductAdapter.ClickListener() {
        @Override
        public void onClick(View v, int position) {
            Intent details = new Intent(getContext(), ProductDetailsActivity.class);
            details.putExtra("product", shop.products.get(position));
            startActivity(details);
        }

        @Override
        public void onLongClick(View v, int position) {

        }
    }));
    return v;
}
}

编辑: 我已经做到了,请告诉我这是否正确有效:

holder.tvProductTitle.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent i = new Intent(context, ProductDetailsActivity.class);
            i.putExtra("product", shop.products.get(position));
            context.startActivity(i);
        }
    });
4

2 回答 2

1

你这样做的方式是不正确的。 由于您的 onBindViewHolder 将在您滚动列表时被重复调用,因此每次都会设置一个新的侦听器。

相反,您应该在 Adapter 的 ViewHolder 类中设置侦听器。并使用 getAdapterPosition() 方法来获取点击项目的位置。例如:

public class ProductAdapter extends RecyclerView.Adapter<ProductAdapter.ProductViewHolder> {     
private Context context; private Shop shop;
 public ProductAdapter(Context context, Shop shop) { 
this.context = context;
 this.shop = shop;
 } 
@Override public ProductViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
 LayoutInflater inflater = LayoutInflater.from(parent.getContext());
 View v = inflater.inflate(R.layout.product_row, parent, false);
 return new ProductViewHolder(v); 
}   
@Override public void onBindViewHolder(ProductViewHolder holder, int position) { 
holder.tvProductTitle.setText(shop.products.get(position).getTitle());
 holder.tvProductDescription.setText(shop.products.get(position).getDescription()); 
Glide.with(context) .load(shop.products.get(position).getImageUrl()) .placeholder(android.R.drawable.ic_menu_upload_you_tube) .error(android.R.drawable.stat_notify_error) .diskCacheStrategy(DiskCacheStrategy.RESULT) .into(holder.ivProduct); 
} 
@Override public int getItemCount() 
{ 
   if (shop.products != null) {
     return shop.products.size();
    } return 0;
 } 

public static class ProductViewHolder extends RecyclerView.ViewHolder {
 private TextView tvProductTitle, tvProductDescription;
 private ImageView ivProduct; 
public ProductViewHolder(View itemView)
 { 
    super(itemView); 
    tvProductTitle = (TextView) itemView.findViewById(R.id.tvProductTitle);
  tvProductDescription = (TextView) itemView.findViewById(R.id.tvProductDescription); 
ivProduct = (ImageView) itemView.findViewById(R.id.ivProduct); 
// Set onclickListener on image
ivProduct.setOnCliCkListener(new onClickListener(){
   @Override
    public void onClick(View v){
     Intent i = new Intent(context, ProductDetailsActivity.class);    
i.putExtra("product",    
shop.products.get(getAdapterPosition()));
 context.startActivity(i);
}
}
} 
 } 
public interface ClickListener { 
 void onClick(View v, int position);
  void onLongClick(View v, int position); 
}
   }
于 2016-10-03T22:26:51.557 回答
0

您可以在公共 onBindViewHolder 中将单击侦听器添加到膨胀项目的每个相应视图。你考虑过吗?

编辑:好的,这就是你所做的。虽然我不知道效率,但这是我会这样做的方式。

于 2016-10-03T21:39:04.990 回答