Git Product home page Git Product logo

timeoutsensor's Introduction

TimeoutSensor

Timeout Sensor for Android Applications

img

This library will make it easy to set a session timeout duration and monitor the application for inactivity. If there has not been any user interaction for the specified amount of time, a dialog will pop up and give the user an additional 30 seconds to respond otherwise the application will kill itself.

Make sure to add to your gradle:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}


	dependencies {
        compile 'com.github.buradd:TimeoutSensor:1.8'
}

To use, you must extend all of your activities with TimeoutActivity (or TimeoutCompatActivity if you use AppCompat):

public class MainActivity extends TimeoutActivity {

}

//OR IF YOU USE APPCOMPAT,

public class MainActivity extends TimeoutCompatActivity {

}

Then, start the sensor and provide the duration (in minutes.):

//This will start the sensor to check for 15 minutes of inactivity.
TimeoutSensor.start(15);

You can also set the duration and call start separately:

TimeoutSensor.setTimeoutDuration(15);
TimeoutSensor.start();

You may stop the sensor at any time:

TimeoutSensor.stop();

The dialog fragment can be customized:

//set the Title
TimeoutSensor.setDialogTitle("ATTENTION:");

//set the Message
TimeoutSensor.setDialogMessage("Your session is about to expire.");

//set the Button Text
TimeoutSensor.setDialogButton("STAY SIGNED IN");

//set the TextView Text (this can take %s which will be replaced by the remaining seconds of the dialogs timer)
TimeoutSensor.setDialogTextview("Session will expire in: %s seconds.");

img

There is a sample APK available here: https://github.com/buradd/TimeoutSensor/blob/master/sample/app/TimeoutSensorSample.apk

That's it!

timeoutsensor's People

Contributors

android-dataticket avatar buradd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

timeoutsensor's Issues

is there way I can do customize activity

hi near here, may i know is there any custom handle activity after session time out such as instead of kill the apps itself but navigate to another activity like login activity.

Need some example!

Hi, Liked this Lib. I need some proper example to understand usage of this library. if possible please add in to ReadMe

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.