Android button which moves in eight direction.
Android button which moves in eight direction.
You can download demo movie file here : demo.mov
It's also on Youtube:
You can download the latest sample APK from this repo here: sample-release.apk
It's also on Google Play:
Having the sample project installed is a good way to be notified of new releases.
Easily reference the library in your Android projects using this dependency in your module's
build.gradlefile:
dependencies { compile 'com.thefinestartist:movingbutton:1.0.0' }
It supports Android API 3+.
It uses nineoldandroid for view animation.
<com.thefinestartist.movingbutton.movingbutton xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/moving_button" android:layout_width="100dp" android:layout_height="40dp" app:mb_move_direction="all" app:mb_event_volume="50" app:mb_vibration_duration="20" app:mb_movementleft="10dp" app:mb_movementright="15dp" app:mb_movementtop="5dp" app:mb_movementbottom="20dp" app:mb_offset_inner="16dp" app:mb_offset_outer="23dp"></com.thefinestartist.movingbutton.movingbutton>
// Move Direction movingButton.getMoveDirection(); movingButton.setMoveDirection(MoveDirection.ALL);// Movement (in Pixel dimension) movingButton.getMovement(); movingButton.setMovement(10); movingButton.getMovementLeft(); movingButton.setMovementLeft(10); movingButton.getMovementRight(); movingButton.setMovementRight(10); movingButton.getMovementTop(); movingButton.setMovementTop(10); movingButton.getMovementBottom(); movingButton.setMovementBottom(10);
// Offset (in Pixel dimension) movingButton.getOffSetInner(); movingButton.setOffSetInner(10); movingButton.getOffSetOuter(); movingButton.setOffSetOuter(10);
// Vibration movingButton.getVibrationDuration(); movingButton.setVibrationDuration(20);
// Volume movingButton.getEventVolume(); movingButton.setEventVolume(50);
// Current Position movingButton.getCurrentPosition();
public interface OnPositionChangedListener { // returns MotionEvent action and changed button position void onPositionChanged(int action, ButtonPosition position); }movingButton.setOnPositionChangedListener(new MovingButton.OnPositionChangedListener() { @Override public void onPositionChanged(int action, ButtonPosition position) { //your code here } });
The MIT License (MIT)Copyright (c) 2015 TheFinestArtist
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.