我正试图将RecyclerView放入ScrollViewecycler视图上方有布局,所以我想在滚动时同时滚动布局和recycler。
在我的主布局中,我有两个子布局,其中一个子布局有recyclerView和另一个子布局都有一个图像。这两个布局都在scrollView 我知道我们不能在一个布局中放置两个滚动视图的问题。我在搜索是否有任何逻辑可以滚动布局和回收器查看 布局.xml Cam任何人请帮助解决此问题:)<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/backgorund"
android:weightSum="1">
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
<LinearLayout
android:id="@+id/layout_top_balance"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".25">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txt_balance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="35dp"
android:textColor="@color/black"
android:text="$60 USD"/>
<TextView
android:layout_below="@+id/txt_balance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="20dp"
android:textColor="#828282"
android:text="Account Balance"/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/layout_feeds"
android:layout_width="match_parent"
android:layout_height="0dp"
android:paddingLeft="16dp"
android:paddingBottom="5dp"
android:layout_weight=".75">
<view
android:layout_width="fill_parent"
android:layout_height="fill_parent"
class="android.support.v7.widget.RecyclerView"
android:id="@+id/recycler_view"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
不建议在android中滚动内部。Recycler视图本身就是一个卷轴。似乎您希望在列表"layout_to_balance"上方有一个可滚动的部分。将此视图添加为回收器视图的标题,并删除滚动视图。这将解决你的问题。
如果您想添加头,可以使用此回收视图库
RecyclerViewHeader示例1
RecyclerViewHeader示例2