Android - 底部隐藏的peekview

时间:2018-03-12 09:53:26

标签: android android-recyclerview bottom-sheet android-nestedscrollview nestedscrollview

如标题所述,我的底页有问题。

我在底页中想要的是带有动态项目的RecyclerView,它可以随时更改。 RecyclerView之前和之后还有组件。为方便起见,我在底页中放了一个片段。

这是我的底页:

<android.support.v4.widget.NestedScrollView
    android:id="@+id/bsControllers"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:behavior_peekHeight="@dimen/controllerPeekHeight"
    app:layout_behavior="@string/bottom_sheet_behavior">

    <FrameLayout
        android:id="@+id/flBsContent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:behavior_hideable="false"/>
</android.support.v4.widget.NestedScrollView>

这是我的片段:

<android.support.constraint.ConstraintLayout
android:id="@+id/clControllerSheetRoot"
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="wrap_content"
android:background="@color/colorPrimary"
tools:context="fr.mld.dmg.view.fragment.ControllerSheetFragment">

<View
    android:id="@+id/vPeek"
    android:layout_width="0dp"
    android:layout_height="@dimen/controllerPeekHeight"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    android:background="@color/green"/>

<ProgressBar
    android:id="@+id/pbControllerScan"
    android:layout_width="0dp"
    android:layout_height="2dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/vPeek"/>

<ImageView
    android:id="@+id/ivBle"
    android:layout_width="36dp"
    android:layout_height="36dp"
    android:layout_marginStart="8dp"
    android:src="@drawable/ic_thread_online"
    app:layout_constraintBottom_toBottomOf="@+id/vPeek"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="@+id/vPeek"/>

<ImageView
    android:id="@+id/ivExpansionIndicator"
    android:layout_width="36dp"
    android:layout_height="36dp"
    android:layout_marginEnd="8dp"
    android:src="@drawable/ic_arrow_down"
    android:tint="@color/white"
    app:layout_constraintBottom_toBottomOf="@+id/vPeek"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="@+id/vPeek"/>

<TextView
    android:id="@+id/tvControllerCount"
    style="@style/BoldWhite"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toBottomOf="@+id/vPeek"
    app:layout_constraintEnd_toStartOf="@+id/ivLight"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintHorizontal_chainStyle="packed"
    app:layout_constraintStart_toEndOf="@+id/ivBle"
    app:layout_constraintTop_toTopOf="@+id/vPeek"
    tools:text="3"/>

<ImageView
    android:id="@+id/ivLight"
    android:layout_width="24dp"
    android:layout_height="24dp"
    android:src="@drawable/ic_light_unselected"
    android:tint="@color/white"
    app:layout_constraintBottom_toBottomOf="@+id/vPeek"
    app:layout_constraintEnd_toStartOf="@+id/tvConnected"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintStart_toEndOf="@+id/tvControllerCount"
    app:layout_constraintTop_toTopOf="@+id/vPeek"/>

<TextView
    android:id="@+id/tvConnected"
    style="@style/BoldWhite"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/connected"
    android:textAllCaps="true"
    app:layout_constraintBottom_toBottomOf="@+id/vPeek"
    app:layout_constraintEnd_toStartOf="@+id/ivExpansionIndicator"
    app:layout_constraintStart_toEndOf="@+id/ivLight"
    app:layout_constraintTop_toTopOf="@+id/vPeek"/>

<android.support.v7.widget.RecyclerView
    android:id="@+id/rvControllers"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    app:layout_constraintBottom_toTopOf="@+id/bConnectAll"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/vPeek"/>

<Button
    android:id="@+id/bConnectAll"
    style="@style/Button.ButtonWhiteStroke"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="16dp"
    android:text="@string/connect_all"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@+id/bUpdateAll"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintHorizontal_chainStyle="packed"
    app:layout_constraintStart_toStartOf="parent"/>

<Button
    android:id="@+id/bUpdateAll"
    style="@style/Button.ButtonWhiteStroke"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginEnd="16dp"
    android:layout_marginStart="8dp"
    android:text="@string/update_all"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintStart_toEndOf="@+id/bConnectAll"/>

<View
    android:id="@+id/vTagUpdate"
    android:layout_width="8dp"
    android:layout_height="8dp"
    android:layout_marginEnd="4dp"
    android:layout_marginTop="4dp"
    android:background="@drawable/tag_warning"
    app:layout_constraintEnd_toEndOf="@+id/bUpdateAll"
    app:layout_constraintTop_toTopOf="@+id/bUpdateAll"/>
</android.support.constraint.ConstraintLayout>

我的问题

首次启动时,底部工作表将向下滚动查看高度。当我展开它然后折叠它时,它不会被窥视高度向下滚动。此外,只有当我的RecyclerView有太多物品无法适应屏幕高度时才会发生,否则它会正常工作。

我已尝试过的内容

  • 我试图将NestedScrollView放在Fragment中。仍然向下滚动到窥视高度。
  • 我尝试使用nestedscrollview.scrollTo(0,0)创建NestedScrollView滚动。不会改变一件事。
  • 我试图完全删除NestedScrollView。 RecyclerView在组件之前和之后重叠组件。

我真的迷失在这里,我真的不知道该怎么做了。任何帮助将不胜感激。

修改 一个视频更清楚我的问题: https://youtu.be/y8KhKW9KS_E

1 个答案:

答案 0 :(得分:0)

跟随@Cheticamp的领导后,我终于想出了问题所在。在创建时,似乎RecyclerView正在聚焦,导致NestedScrollView滚动到它的顶部。

我所要做的就是将android:focusableInTouchMode="true"放到布局的绿色背景视图中。然后,它首先获得焦点,并且不会滚动到RecyclerView的顶部。

非常感谢所有帮助我解决问题的人!