Два повторных просмотра в одной задаче прокрутки активности - PullRequest
0 голосов
/ 15 марта 2019

Я создал 2 повторных просмотра в одном упражнении.Один прокручивает горизонтально, а другой - вертикально.Я могу правильно прокрутить внутри каждого RecyclerView, но страница в целом не будет прокручиваться, т. Е. Верхний RecyclerView всегда остается сверху, а нижний остается внизу, так как оба зафиксированы в положении.

<ScrollView 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.shakeelnawaz.recipes.AllRecipesFragmet">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:layout_marginStart="20dp"
        android:layout_marginTop="20dp"
        android:text="@string/trending_recipes"
        android:textSize="18sp" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/horizontaltrendingrecycleview"
        android:layout_width="match_parent"
        android:layout_height="240dp"
        android:layout_marginStart="15dp"
        android:orientation="horizontal"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
    </android.support.v7.widget.RecyclerView>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="20dp"
        android:text="@string/all_recipes"
        android:textSize="18sp" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycleView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
    </android.support.v7.widget.RecyclerView>
    </LinearLayout>
</ScrollView>

Я прочиталэтот пост " Scolling с несколькими RecyclerViews в Layout " и программной установкой высоты вертикального recycleview.как это

LinearLayout.LayoutParams params = new     
 LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, 
 ViewGroup.LayoutParams.WRAP_CONTENT);
// calculate height of RecyclerView based on child count
params.height=1150;
// set height of RecyclerView
recyclerView.setLayoutParams(params);

Но проблема в том, как я могу рассчитать высоту RecyclerView на основе количества детей?

Ответы [ 2 ]

1 голос
/ 15 марта 2019

Замените ScrollView на NestedScrollView

Затем добавьте: horizontaltrendingrecycleview.isNestedScrollingEnabled = false

Ваш XML должен выглядеть следующим образом:

<android.support.v4.widget.NestedScrollView 
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:fillViewport="true"
  tools:context="com.shakeelnawaz.recipes.AllRecipesFragmet">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginBottom="10dp"
      android:layout_marginStart="20dp"
      android:layout_marginTop="20dp"
      android:text="@string/trending_recipes"
      android:textSize="18sp" />

    <android.support.v7.widget.RecyclerView
      android:id="@+id/horizontaltrendingrecycleview"
      android:layout_width="match_parent"
      android:layout_height="240dp"
      android:layout_marginStart="15dp"
      android:orientation="horizontal"
      app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginStart="20dp"
      android:text="@string/all_recipes"
      android:textSize="18sp" />

    <android.support.v7.widget.RecyclerView
      android:id="@+id/recycleView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="20dp"
      app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

  </LinearLayout>
</android.support.v4.widget.NestedScrollView>
1 голос
/ 15 марта 2019

Используйте NestedScrollView вместо ScrollView и используйте эту строку ниже в вашем Fragment в Activity.

ViewCompat.setNestedScrollingEnabled(mYourRecycleView, false);

Это будет работать на всех ваших уровнях API Android.

...