Easy Swipe Maker


Source link: https://github.com/xenione/swipe-maker

Easy Swipe Maker

From the library to build your own swipeout item views. These examples will only take 5 minutes each. Have a look at the demos app available on google play (is not updated -NO Swing and Vertical swipe examples)

This library is extrematly powerful since you can custom your own swipe effects "No limits for your imagination". Here you can find some examples:

Example of a Swipe of Swing

Example of a Swipe of Both Sides

Example of Drag Right Side Swipe

Example of a Two-steps Right Swipe with amazing color change

Are you ready? I'll show you how:

Let's do this one (Right Side Swipe):

Add it on your project:

Gradle:

compile 'com.xenione.libs:swipe-maker:1.1.3'

1.Extend AbsCoordinatorLayout and create your own Coordinator, in this case I called it HalfRightCoordinatorLayout

 public class HalfRightCoordinatorLayout extends AbsCoordinatorLayout {

Override the doInitialViewsLocation() method. This hook arises when views are placed on the screen. Set anchors for the swipe widget. Anchors are the boundaries between swipe slides (look at the layout at the next point). We want that swipe slides within the button "mBackgroundView" boundaries.

 @Override
  public void doInitialViewsLocation() {

mForegroundView = (SwipeLayout) findViewById(R.id.foregroundView);

mBackgroundView = findViewById(R.id.backgroundView);

mForegroundView.anchor(mBackgroundView.getRight(), mBackgroundView.getLeft());

  
}

  

2.Make your layout according to the previous point Note: SwipeLayout Id must be @id/foregroundView and Background View must be @id/backgroundView

<?xml version="1.0" encoding="utf-8"?> <apps.xenione.com.swipelayout.example.swipe.HalfRightCoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

<ImageButton

android:id="@id/backgroundView"

android:background="@color/colorAccent"

android:src="@drawable/ic_delete"

android:padding="@dimen/button_padding"

android:layout_width="wrap_content"

android:layout_height="match_parent"/>

<com.xenione.libs.swipemaker.SwipeLayout

android:id="@id/foregroundView"

android:layout_width="match_parent"

android:layout_height="@dimen/item_height"

android:orientation="vertical">

 <ImageView

 android:id="@+id/bg_disc"

 android:layout_width="match_parent"

 android:scaleType="centerCrop"

 android:layout_height="match_parent" />

 <RelativeLayout

 android:layout_width="match_parent"

 android:layout_height="match_parent">

  <TextView

  style="@style/SubTitleTextStyle"

  android:id="@+id/title"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  tools:text="Sao"

  android:layout_below="@+id/bandName"

  android:layout_alignRight="@+id/bandName"

  android:layout_alignEnd="@+id/bandName" />

  <TextView

  style="@style/TitleTextStyle"

  android:id="@+id/bandName"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  tools:text="La Gossa Sorda"

  android:layout_alignParentTop="true"

  android:layout_alignParentRight="true"

  android:layout_alignParentEnd="true"

  android:layout_marginTop="30dp"

  android:layout_marginRight="30dp"

  android:layout_marginEnd="30dp" />

 </RelativeLayout>

</com.xenione.libs.swipemaker.SwipeLayout>  </apps.xenione.com.swipelayout.example.swipe.HalfRightCoordinatorLayout>;

3.Make your amazing transformations- Go back to your class inherited from AbsCoordinatorLayout (im our case HalfRightCoordinatorLayout ) and you have a hook called onTranslateChange(...).

 @Override
  public void onTranslateChange(float global, int index, float relative) {

  
}

where you can monitor swipe progress.

The parameter descriptions are:

global: give us percentage (1%: 0-1) :0 means left limit and 1 means right limit.

index and relative: in case we have more than 1 section that would happened if we had given more than 2 anchor points (such as Two-step Swipe)

index: is the index of the section (if we had got 3 anchor points we would have 2 sections: One from anchor 1 to 2 and the second from anchor 2 to 3)

relative: gives us the precentage(1%: 0-1) within the index section.

In our case we have only one section so we don't have to take care of that. So let's add a nice transition effect:

 @Override
  public void onTranslateChange(float global, int index, float relative) {

 backgroundView.setAlpha(global);

  
}

Other example of what you can do with Easy Swipe Maker

Before-After Effect

find out more at github

Last version v1.1.1 - Feature added: Allow vertical swipe.

License


Copyright 2016 Eugeni Josep Senent i Gabriel  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 at
  http://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. 

Resources

A SlidingPaneLayout that is partially visible, with a cross fade.

Compatibility library for dealing with various device photo albums.

Photo image selection activity set library.

Android-Device-Compatibility just yet another compatibility package for Android. This project aims to make the app compatible with various devices all over the world. The project will take care about lots of issues caused by device differences, so you don't need to write a weird compatibility code on your own.

Features:

  • Workarounds for device-specific problems
  • OS version compatibility
  • OS framework bug-fixes

CustomType allows you to easily use different typfaces in your app. It was created to initially work with the Roboto family of fonts, but has since been adapted to allow you to use any typeface that you would like.

CustomType maintains static Typeface objects to avoid potential memory leaks that can occur. Hence, it is the ideal manner of using any custom typeface in your app, regardless of whether or not it belongs to the Roboto family.

An Android transformation library providing a variety of image transformations for Picasso.

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