https://github.com/intrepidpursuits/animation-exercise-android
https://github.com/intrepidpursuits/animation-exercise-android
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/intrepidpursuits/animation-exercise-android
- Owner: IntrepidPursuits
- Created: 2018-01-16T19:08:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T19:15:11.000Z (over 8 years ago)
- Last Synced: 2025-02-03T14:46:24.183Z (over 1 year ago)
- Language: Java
- Size: 2.05 MB
- Stars: 0
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android Animation Exercise
## Instructions
1. Fork this repository.
2. In Android Studio, go to File -> New -> Project from Version Control -> GitHub and paste in the new forked repo's URL: `https://github.com/YourGitHubName/animation-exercise-android.git`
3. Create a branch called `/add-animations`
```
git checkout -b /add-animations
```
4. Download the animation movie files from the `animation_movies` folder in this repository and watch them. Add those animations to the app while preserving all functionality. You'll probably want to start with modifying the three methods marked by the TODOs in `DetailActivity` and `OverviewActivity` (or viewing all TODOs by using ⌘ + Shift + A and searching for 'todo' to find the TODO tool).
5. Commit and push your branch up to Github
```
git add .
git commit -m "Add animations"
git push origin /add-animations
```
6. Create a pull request on GitHub