無論是標題中的嵌套方式,還是其它列表控件之間的嵌套,都適用。
1、在GirdView的所在布局的根布局中設置改屬性: android:descendantFocusability="blacksDescendants"
2、動態設置GirdView的如下屬性:
gridview.setClickable(false);
gridview.setPressed(false);
gridview.setEnabled(false);
經過如上兩步操作即可在recyclerview的OnItemClickListener()中獲得點擊事件的響應了。
