Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlbertGrobas/MovingImageView
Custom ImageView for moving image around the screen (Android)
https://github.com/AlbertGrobas/MovingImageView
Last synced: 3 months ago
JSON representation
Custom ImageView for moving image around the screen (Android)
- Host: GitHub
- URL: https://github.com/AlbertGrobas/MovingImageView
- Owner: AlbertGrobas
- License: apache-2.0
- Created: 2014-08-04T20:29:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T15:47:16.000Z (over 7 years ago)
- Last Synced: 2024-06-28T13:32:12.881Z (5 months ago)
- Language: Java
- Homepage:
- Size: 37.8 MB
- Stars: 819
- Watchers: 30
- Forks: 146
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/AlbertGrobas/MovingImageView
- awesome-android-ui - https://github.com/AlbertGrobas/MovingImageView
README
MovingImageView
===============
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MovingImageView-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/1850)Create a custom ImageView for moving image around the screen.
![Demo Screenshot 1][1]
![Demo Screenshot 2][2]Usage
-----To use MovingImageView, add the module into your project and start to build xml or java.
### XML
```xml
```##### Properties:
* `app:miv_load_on_create` (boolean) -> default true
* `app:miv_max_relative_size` (float) -> default 3.0f
* `app:miv_min_relative_offset` (float) -> default 0.2f
* `app:miv_start_delay` (integer) -> default 0
* `app:miv_repetitions` (integer) -> default -1
* `app:miv_speed` (integer) -> default 50### JAVA
```java
MovingImageView image = (MovingImageView) findViewById(R.id.image);
image.getMovingAnimator().setInterpolator(new BounceInterpolator());
image.getMovingAnimator().setSpeed(100);
image.getMovingAnimator().addCustomMovement().
addDiagonalMoveToDownRight().
addHorizontalMoveToLeft().
addDiagonalMoveToUpRight().
addVerticalMoveToDown().
addHorizontalMoveToLeft().
addVerticalMoveToUp().
start();
```License
-------Copyright 2014 Albert Grobas
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.[1]: ./art/sample01.gif
[2]: ./art/sample02.gif