0
我想知道是否可以滾動recyclerview並滾動其他對象而不使用嵌套滾動或滾動視圖?滾動recyclerview如何滾動recyclerview以外的對象
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="50dp"
android:layout_gravity="center"
android:gravity="center"
android:text="Text or other oject will list here"
android:id="@+id/info"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/business_recycle"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
檢查:Android的列表視圖滾動視圖內 –