使用 CollapsingToolbarLayout 滚动后不会调用 OnClick 事件。
OnClick event does't called after scrolling with CollapsingToolbarLayout.
-
android
-
android-scroll
-
android-design-library
-
android-coordinatorlayout
-
android-collapsingtoolbarlayout
我用 CollapsingToolbarLayout
实现了视差效果并发现了一个问题:当我在滚动和视差效果之后立即单击 RecyclerView
项目时,onClick
事件没有被调用, 但 RecyclerView
的 onTouch
事件被调用。
如果你等待几秒钟(没有点击),它运行良好。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="250dp"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="250dp"
android:fitsSystemWindows="true"
android:src="@drawable/img_stub"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
当我将 app:layout_scrollFlags="scroll"
添加到 CollapsingToolbarLayout 时出现问题。
我认为这可能取决于稀松布动画...
这似乎是 NestedScrollView
中的错误。您可以使用 here.
中的 FixedAppBarLayoutBehaviour
解决此问题
然后像这样将其添加到您的 AppBarLayout
:
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_height="..."
android:layout_width="..."
app:layout_behavior="your.package.FixAppBarLayoutBehavior">
我已经为这个错误创建了一个问题。
https://issuetracker.google.com/issues/70883270
这是支持库开发团队的回答:
"Our engineering team has fixed this issue. It will be available in a future support lib release."
android
android-scroll
android-design-library
android-coordinatorlayout
android-collapsingtoolbarlayout
我用 CollapsingToolbarLayout
实现了视差效果并发现了一个问题:当我在滚动和视差效果之后立即单击 RecyclerView
项目时,onClick
事件没有被调用, 但 RecyclerView
的 onTouch
事件被调用。
如果你等待几秒钟(没有点击),它运行良好。
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="250dp"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="250dp"
android:fitsSystemWindows="true"
android:src="@drawable/img_stub"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
当我将 app:layout_scrollFlags="scroll"
添加到 CollapsingToolbarLayout 时出现问题。
我认为这可能取决于稀松布动画...
这似乎是 NestedScrollView
中的错误。您可以使用 here.
FixedAppBarLayoutBehaviour
解决此问题
然后像这样将其添加到您的 AppBarLayout
:
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_height="..."
android:layout_width="..."
app:layout_behavior="your.package.FixAppBarLayoutBehavior">
我已经为这个错误创建了一个问题。 https://issuetracker.google.com/issues/70883270
这是支持库开发团队的回答: "Our engineering team has fixed this issue. It will be available in a future support lib release."