Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexstyl/Material-SearchTransition
A demo showcasing how to implement a Dial app-like Toolbar transition
https://github.com/alexstyl/Material-SearchTransition
animation material searchbar stock-android transition
Last synced: 3 months ago
JSON representation
A demo showcasing how to implement a Dial app-like Toolbar transition
- Host: GitHub
- URL: https://github.com/alexstyl/Material-SearchTransition
- Owner: alexstyl
- License: mit
- Created: 2016-09-11T22:34:30.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2021-09-23T10:34:36.000Z (about 3 years ago)
- Last Synced: 2024-06-16T05:39:05.935Z (5 months ago)
- Topics: animation, material, searchbar, stock-android, transition
- Language: Java
- Homepage:
- Size: 420 KB
- Stars: 407
- Watchers: 10
- Forks: 60
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-android-ui - Material-SearchTransition - 展示如何过渡到搜索的示例项目 (SearchView)
README
# Material-SearchTransition
This is a sample project showcasing how a transition to Search can be achieved similar to how it can be found in the [Android stock Dialer app](https://play.google.com/store/apps/details?id=com.google.android.dialer).
The main difference to the implementation found in the stock Dialer app is that you have two separate Activities (MainActivity and SearchActivity) in the demo, as opposed to having a huge activity that has the logic for both.
The searchbar is an actual [`Toolbar`](https://developer.android.com/reference/android/widget/Toolbar.html) view, which allows you to still use all the things you get for free (such as the Navigation button, inflate a custom Menu etc) using the API you already know. No custom views trying to replicate behavior that is given by the system.
The demo is using the [`Transition` API](https://developer.android.com/reference/android/transition/package-summary.html) with a combination of custom Activity transitions.
### How it looks like
![Transition to Search](https://github.com/alexstyl/Material-SearchTransition/blob/art/transition-to-search.gif?raw=true)
### Jump straight to code
To get started, have a look at the [MainActivity](https://github.com/alexstyl/Material-SearchTransition/blob/master/app/src/main/java/com/alexstyl/searchtransition/mainscreen/MainActivity.java#L30) class. Enjoy!
### Just code is not enough?
The full explanation and exploration of transitions can be found at [Exposing the Searchbar](https://alexstyl.com/exposing-the-searchbar/)
### License
```
MIT LicenseCopyright (c) 2016 Alex Styl
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```