【问题标题】:Implement Play Store like animation in SearchWidget在 SearchWidget 中实现类似 Play Store 的动画
【发布时间】:2015-05-18 15:24:22
【问题描述】:

我想在我的应用程序中添加一个与 Play 商店相同的动画:

搜索小部件从右侧开始填充整个工具栏。我使用解释了here 的搜索小部件。 到目前为止,我还没有真正找到解决方案。也许有人有更多的经验,可以帮助我。谢谢...

【问题讨论】:

    标签: android android-animation material-design


    【解决方案1】:

    我整理了一个如何创建搜索栏的示例和几个其他工具栏示例。它位于 FloatingSearchToolbar 文件下。您需要在主工具栏上显示视图并将浮动工具栏设置为 View.GONE。

    https://github.com/EugeneHoran/Android-Hard-Toolbar-with-many-different-elements

    至于动画,您需要从右上角配置视图动画。下面的视图动画来自谷歌的一个样本,可以在上面找到。

    https://github.com/googlesamples/android-RevealEffectBasic/

     Animator animator = ViewAnimationUtils.createCircularReveal(
                    View v **Your view here**,
                    0,
                    0,
                    0,
                    (float) Math.hypot(shape.getWidth(), shape.getHeight()));
    

    【讨论】:

      猜你喜欢
      • 2015-09-14
      • 1970-01-01
      • 2020-10-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多