我想在我的应用程序中添加一个与Play商店相同的动画:
搜索小部件从右侧增长以填充整个ToolBar。我使用搜索小部件解释here。 到目前为止,我还没有真正找到解决方案。也许有人有更多的经验,可以帮助我。感谢...
答案 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()));