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

Click のカード ビューは機能していますが、リサイクラー ビューの領域はクリックできません。カードビューのイベントがキャプチャされるようにするにはどうすればクリック可能にできますか。

4

4 に答える 4

0

recylerview の場合、アダプターの順序を設定して、リストビューのようなクリック可能なものを使用する必要があります。次のリンクを参照できます: https://developer.android.com/training/material/lists-cards.html ここで別の質問を見ることができます: RecyclerView に onItemClickListener() がないのはなぜですか? また、RecyclerView は 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-21T06:14:44.633 に答える
0

InterceptTouchCardView のアイテムにRecyclerViewクリック可能なビュー (ボタンなど) がある場合、このソリューションには問題があります。これらのクリック可能なビューは、タッチ イベントを受け取りません。より良い解決策は、 RecyclerView を拡張し、そのonInterceptTouchEventandをオーバーライドすることです。そのonTouchEventため、どちらも次のように false を返すだけです (Kotlin 構文)。

class ClickThroughRecyclerView : RecyclerView {

    constructor(context: Context) : super(context)

    constructor(context: Context, attr: AttributeSet?) : super(context, attr)

    constructor(context: Context, attr: AttributeSet?, defStyle: Int) : super(context, attr, defStyle)

    override fun onInterceptTouchEvent(e: MotionEvent): Boolean {
        return false
    }

    override fun onTouchEvent(e: MotionEvent): Boolean {
        return false
    }

}

レイアウト ファイル内でを使用ClickThroughRecyclerViewすることにより、 の項目 (ボタンなど) によって消費されないタッチ イベントがの親ビューに確実にRecyclerView伝達されます。RecyclerView

于 2017-01-10T18:19:07.050 に答える