在SearchWidget中实现像Play一样的Play商店

时间:2015-05-18 15:24:23

标签: android android-animation material-design

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

before animation

after animation

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

1 个答案:

答案 0 :(得分:2)

我已经汇总了一些如何创建搜索栏和其他几个工具栏示例的示例。它位于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()));