我的LinearLayout
里面有RecyclerView
。 LinearLayout
是可点击的,直到在其中添加RecyclerView
,如果我删除RecyclerView
,它就会再次点击。
我尝试了android:clickable
,android:focusable
和android:focusableInTouchMode
的所有组合,但没有任何效果。
我需要RecyclerView
中的LinearLayout
,我必须能够点击LinearLayout
并拥有OnClick
事件处理程序。
答案 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');
});
这解决了这个问题。