第一種:在你的RecyclerView上外邊嵌套一層RelativeLayout临庇,
然后添加屬性?android:descendantFocusability="blocksDescendants"腰根,
如:
<RelativeLayout
? ? android:layout_width="match_parent"
? ? android:layout_height="wrap_content"
? ? android:descendantFocusability="blocksDescendants">
? ? <android.support.v7.widget.RecyclerView
? ? ? ? android:id="@+id/rv_meeting"
? ? ? ? android:paddingLeft="15dp"
? ? ? ? android:paddingRight="15dp"
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="wrap_content"/>
</RelativeLayout>
PS:既然提到了這個(gè)屬性就說(shuō)下它的意思吧通贞,知道的同學(xué)再?gòu)?fù)習(xí)一遍唄肴敛,鞏固鞏固更牢靠授账。
屬性android:descendantFocusability的含義是:當(dāng)一個(gè)view獲取焦點(diǎn)時(shí)倘是,定義ViewGroup和其子控件兩者之間的關(guān)系。
它一共有3個(gè)屬性值婴梧,它們分別是:
beforeDescendants:viewGroup會(huì)優(yōu)先子類控件而獲取焦點(diǎn)
afterDescendants:viewGroup只有當(dāng)子類控件不需要獲取焦點(diǎn)的時(shí)候才去獲取焦點(diǎn)
blocksDescendants:viewGroup會(huì)覆蓋子類控件而直接獲取焦點(diǎn)
第二種方法:
首先在xml布局中將你的ScrollView替換成android.support.v4.widget.NestedScrollView下梢,
并在java代碼中設(shè)置recyclerView.setNestedScrollingEnabled(false);