如何在滚动后将图标从图像固定到工具栏,就像WhatsApp组编辑图标一样


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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.support.design.widget.CoordinatorLayout
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:fitsSystemWindows="true">
       <android.support.design.widget.AppBarLayout
           android:id="@+id/app_bar_layout"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:fitsSystemWindows="true"
           android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
           <android.support.design.widget.CollapsingToolbarLayout
               android:id="@+id/collapsing_toolbar"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:accessibilityLiveRegion="assertive"
               android:fitsSystemWindows="true"
               app:contentScrim="?attr/colorPrimary"
               app:layout_scrollFlags="scroll|exitUntilCollapsed"
               app:titleEnabled="true">
               <ImageView
                   android:id="@+id/image"
                   android:layout_width="match_parent"
                   android:layout_height="350dp"
                   android:fitsSystemWindows="true"
                   android:scaleType="centerCrop"
                   android:src="@drawable/ic_launcher"
                   app:layout_collapseMode="parallax" />

               <ImageView
                   android:id="@+id/imgicon1"
                   android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:layout_gravity="bottom|right"
                   android:layout_marginBottom="15dp"
                   android:fitsSystemWindows="true"
                   android:src="@drawable/fb"
                   app:layout_collapseMode="pin"
                   app:layout_collapseParallaxMultiplier="0.7" />
               <ImageView
                   android:id="@+id/imgicon2"
                   android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:layout_gravity="bottom|right"
                   android:layout_marginBottom="15dp"
                   android:layout_marginRight="45dp"
                   android:fitsSystemWindows="true"
                   android:src="@drawable/insta"
                   app:layout_collapseMode="pin"
                   app:layout_collapseParallaxMultiplier="0.7" />
               <android.support.v7.widget.Toolbar
                   android:id="@+id/toolbar"
                   android:layout_width="match_parent"
                   android:layout_height="?attr/actionBarSize"
                   android:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
                   android:title="Collapsing Toolbar"
                   app:layout_collapseMode="pin" />
           </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.v7.widget.RecyclerView>
   </android.support.design.widget.CoordinatorLayout>
</RelativeLayout>

当我滚动时,2个图标隐藏在图像后面,而不是在工具栏内设置。任何知道我该怎么做,我研究了很多例子,但现在为我工作。我已经实现了 onOffsetChanged 的应用栏布局方法并尝试播放动画,但对我不起作用。

在Android中有一个公认的答案:动态更改动作栏图标? 参考这个。您可以从图像视图中获取图像并根据您的要求减小其大小,并可以使用homeItem.setIcon(您的图像)更改图标;

最新更新