转子 https://blog.youkuaiyun.com/huangxin112/article/details/79415079
recyclerView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP) {
myLayout.performClick(); //模拟父控件的点击
}
return false;
}
});