MovingButton


Source link: https://github.com/TheFinestArtist/MovingButton

Moving Button

Android button which moves in eight direction.

Preview

Sample Demo

You can download demo movie file here : demo.mov

It's also on Youtube:

Sample Project

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.

Gradle Dependency (jcenter)

Easily reference the library in your Android projects using this dependency in your module's build.gradle file:

dependencies {

  compile 'com.thefinestartist:movingbutton:1.0.0' 
}

Requirements

It supports Android API 3+.

It uses nineoldandroid for view animation.

Attrubutes

<!--Button Move Direction (Default : all)--> <attr name="mb_move_direction">
  <enum name="all" value="0" />
  <enum name="horizontal_vertical" value="1" />
  <enum name="horizontal" value="2" />
  <enum name="vertical" value="3" />
  <enum name="still" value="4" /> </attr>  <!--Button Movement (Default : 0dp)--> <!--Since DEFAULT value is ZERO, set up your button movement larger than zero.--> <!--You can set up the movement as minus value--> <attr name="mb_movement" format="dimension" /> <attr name="mb_movement_left" format="dimension" /> <attr name="mb_movement_right" format="dimension" /> <attr name="mb_movement_top" format="dimension" /> <attr name="mb_movement_bottom" format="dimension" />  <!--Button Event Offset (Default : 16dp for inner & 23dp for outer)--> <!--Helps to calculate touch event from button--> <attr name="mb_offset_inner" format="dimension" /> <attr name="mb_offset_outer" format="dimension" />  <!--Vibrate on button movement (Default : 0)--> <!--android.permission.VIBRATE Permission required--> <!--if you set the duration as 0, no Permission required!--> <attr name="mb_event_volume" format="integer" />  <!--Play sound on button movement (Default : 0)--> <attr name="mb_event_volume" format="integer" />

Layout Examples

<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="vertical"
  app:mb_event_volume="0"
  app:mb_vibration_duration="20"
  app:mb_movement="10dp" />  <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" />

Setter & Getter

// 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();

Listener

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
  
}
 
}
);

License

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. 

Resources

Sometimes you don't have enough space in your layout to display a wide progressbar. So this library gives you a complete new possibility to display a progress. You can simply show a progressbar around an image. This progressbar can be configured in a lot of different ways, like color, outline, display of the percentage and so on.

Android-MonthCalendarWidget is a simple example of a responsive Month Calendar app widget for Android 4.1+.

FragmentTransactionExtended is a library which provide us a set of custom animations between fragments.

A Java API to read, write and create MP4 container. Manipulating containers is different from encoding and decoding videos and audio.

What can you do?

  • Muxing audio/video into an MP4 file
  • Append recordings that use same encode settings
  • Adding/Changing metadata
  • Shorten recordings by ommiting frames.

android-spock allows to run Spock on Android.

Godot is a fully featured game engine. It focuses on having great tools, and a visual oriented workflow that can export to PC, Mobile and Web platforms with no hassle. The editor, language and APIs are feature rich, yet simple to learn, allowing you to become productive in a matter of hours.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes