<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/home_subscribe_card"
android:layout_width="match_parent"
android:layout_height="72dp"
android:onClick="@{vm.onGoalPress}"
card_view:cardCornerRadius="4dp">
<android.support.v7.widget.RecyclerView
android:id="@+id/feeds_list"
android:layout_width="200dp"
android:layout_height="30dp"
android:layout_marginTop="6dp" />
</CardView>单击上的卡片视图正在工作.But回收器视图的区域不可单击。如何使其可点击,从而捕获卡片视图的事件。
发布于 2016-06-21 21:16:45
public class InterceptTouchCardView extends CardView {
public InterceptTouchCardView(Context context) {
super(context);
}
public InterceptTouchCardView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public InterceptTouchCardView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
/**
* Intercept touch event so that inner views cannot receive it.
*
* If a ViewGroup contains a RecyclerView and has an OnTouchListener or something like that,
* touch events will be directly delivered to inner RecyclerView and handled by it. As a result,
* parent ViewGroup won't receive the touch event any longer.
*/
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
return true;
}}
发布于 2016-06-21 14:14:45
对于recylerview,您需要设置适配器顺序以使用clickable,如listview。你可以参考下面的链接:https://developer.android.com/training/material/lists-cards.html你可以在这里查看另一个问题:Why doesn't RecyclerView have onItemClickListener()? And how RecyclerView is different from Listview?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_activity);
mRecyclerView = (RecyclerView) findViewById(R.id.my_recycler_view);
// use this setting to improve performance if you know that changes
// in content do not change the layout size of the RecyclerView
mRecyclerView.setHasFixedSize(true);
// use a linear layout manager
mLayoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(mLayoutManager);
// specify an adapter (see also next example)
mAdapter = new MyAdapter(myDataset);
mRecyclerView.setAdapter(mAdapter);
}
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
private String[] mDataset;
// Provide a reference to the views for each data item
// Complex data items may need more than one view per item, and
// you provide access to all the views for a data item in a view holder
public static class ViewHolder extends RecyclerView.ViewHolder {
// each data item is just a string in this case
public TextView mTextView;
public ViewHolder(TextView v) {
super(v);
mTextView = v;
}
}
// Provide a suitable constructor (depends on the kind of dataset)
public MyAdapter(String[] myDataset) {
mDataset = myDataset;
}
// Create new views (invoked by the layout manager)
@Override
public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
View v = LayoutInflater.from(parent.getContext())
.inflate(R.layout.my_text_view, parent, false);
// set the view's size, margins, paddings and layout parameters
...
ViewHolder vh = new ViewHolder(v);
return vh;
}
// Replace the contents of a view (invoked by the layout manager)
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
// - get element from your dataset at this position
// - replace the contents of the view with that element
holder.mTextView.setText(mDataset[position]);
}
// Return the size of your dataset (invoked by the layout manager)
@Override
public int getItemCount() {
return mDataset.length;
}}
//类似这样的//holder.mTextView.setOnClickListener(onClick);
发布于 2016-06-21 14:34:38
您需要在recyclerview的viewholder中设置单击侦听器。在Viewholder中,你可以访问每个视图的所有元素,回收器视图膨胀的视图组。我希望这是有意义的。
或者,可以在onBind()方法中设置onclick侦听器。
你可以看看this question
如果您的卡片视图在回收者视图之外,则没有直接访问它的方法。使用回调或事件总线从回收器视图到activity /fragment,在活动视图中膨胀卡片视图,然后使用新值更新卡片视图
https://stackoverflow.com/questions/37888530
复制相似问题