GithubHelp home page GithubHelp logo

swipebackhelper's Introduction

SwipeBackHelper

中文 | English

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

swipeback.png

Dependency

compile 'com.jude:swipebackhelper:3.1.2'

Usage

Add this tostyle.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.

swipebackhelper's People

Contributors

jude95 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.