LinearLayout中的RecyclerView消除了LinearLayout的可点击性

时间:2016-02-11 12:14:18

标签: android android-linearlayout android-recyclerview

我的LinearLayout里面有RecyclerViewLinearLayout是可点击的,直到在其中添加RecyclerView,如果我删除RecyclerView,它就会再次点击。

我尝试了android:clickableandroid:focusableandroid:focusableInTouchMode的所有组合,但没有任何效果。

我需要RecyclerView中的LinearLayout,我必须能够点击LinearLayout并拥有OnClick事件处理程序。

1 个答案:

答案 0 :(得分:0)

我在LinearLayout中添加了以下代码行:

$mailer->queue('emails.emailtemplate', $this->getUser , function ($message) {
    $message->from('support@xxx.com', 'Laravel');

    $message->to('xxx@gmail.com')->cc('xxx@yahoo.co.uk');
});

这解决了这个问题。