SwipeBackHelper


Source link: https://github.com/Jude95/SwipeBackHelper

SwipeBackHelper

?? | English

Only three lines of code makes activity swipe close. Part of the code modified from SwipeBackLayout

Dependency

compile 'com.jude:swipebackhelper:3.1.2'

Usage

Add this to style.xml:

 //if you don't set this the background will be black when you slide.
  <item name="android:windowIsTranslucent">true</item>
  //set the right in/out animation of Activity,you can change this to yours
  <item name="android:windowAnimationStyle">@style/SlideRightAnimation</item>

Attention set up a separate theme for your main activity which should be at bottom and can't be swipe.and set the Activity no swipe by setSwipeBackEnable(false)

 <style name="MainTheme" parent="AppTheme">

<item name="android:windowIsTranslucent">false</item>
  </style>

Add this code into your activity's lifecycle?

 @Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

SwipeBackHelper.onCreate(this);

  
}

@Override
  protected void onPostCreate(Bundle savedInstanceState) {

super.onPostCreate(savedInstanceState);

SwipeBackHelper.onPostCreate(this);

  
}

@Override
  protected void onDestroy() {

super.onDestroy();

SwipeBackHelper.onDestroy(this);

  
}

If you need more setting,you can use this after SwipeBackHelper.onCreate()?

 SwipeBackHelper.getCurrentPage(this)//get current instance

.setSwipeBackEnable(true)//on-off 

.setSwipeEdge(200)//set the touch area?200 mean only the left 200px of screen can touch to begin swipe.

.setSwipeEdgePercent(0.2f)//0.2 mean left 20% of screen can touch to begin swipe.

.setSwipeSensitivity(0.5f)//sensitiveness of the gesture?0:slow  1:sensitive

.setScrimColor(Color.BLUE)//color of Scrim below the activity

.setClosePercent(0.8f)//close activity when swipe over this 

.setSwipeRelateEnable(false)//if should move together with the following Activity

.setSwipeRelateOffset(500)//the Offset of following Activity when setSwipeRelateEnable(true) .setDisallowInterceptTouchEvent(true)//your view can hand the events first.default false;

.addListener(new SwipeListener() {

  @Override

 public void onScroll(float percent, int px) {

 
}

  @Override

 public void onEdgeTouch() {

 
}

  @Override

 public void onScrollToClose() {

 
}

}
);

License

Copyright 2015 Jude  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

Use the LitToast to get lit and show your users a proper toast.

The Simple Number Separator is the lightweight library for separate number with coma in android or dot or dynamically by your locale device.

A sample Android application to demonstrate how to build screens as fully independent modules.

Goals

  • Use native Android SDK as much as possible (Fragment, ViewModel)
  • Support configuration changes

StylishWidget is a library for an Android Application project to make the UI more beautiful and allow to use third party fonts.

Android Support Library's NavigationView with RTL items.

Tehreer is a library which gives full control over following text related technologies.

  • Bidirectional Algorithm
  • OpenType Shaping Engine
  • Text Typesetting
  • Text / Glyph Rendering

It is a wrapper over mature C libraries, FreeType, and SheenFigure.

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