Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Androidapplockscreen | 47 | 20 days ago | 2 | mit | Java | |||||
An easily implementable, clean, minimal Lockscreen library for Android | ||||||||||
Note Locker | 13 | 2 years ago | Java | |||||||
Android lock screen | ||||||||||
Trinitylocker | 8 | 5 years ago | 1 | apache-2.0 | Java | |||||
Source code of the upcoming android app, Trinity Locker | ||||||||||
Osumwalls | 5 | 6 years ago | Java | |||||||
An Absolutely Osum app | ||||||||||
Lockscreenapp | 3 | 8 years ago | 1 | Java | ||||||
Android App for LockScreen | ||||||||||
Airportlockscreen | 3 | 5 years ago | bsd-3-clause | Java | ||||||
Android app that allows to disable lockscreen features | ||||||||||
E Caller | 1 | a year ago | mit | Java | ||||||
E-caller | ||||||||||
Lockscreen Motivation | 1 | 6 years ago | Java | |||||||
Android app that gets you motivated every time you check your phone! | ||||||||||
Animenfo_radio | 1 | 8 years ago | Java | |||||||
Android app for http://animenfo.com/radio website |
An easily implementable, clean, minimal Lockscreen module for Android Apps. Design inspired by Diary ( https://play.google.com/store/apps/details?id=com.pixelcrater.Diaro )
Image1 | Image2 |
---|---|
![]() |
![]() |
Sharing with your friends is just one click away from here
If you like my works and want to support me/my works, feel free to support or donate. My payment details can be found here: https://p32929.github.io/SendMoney2Me/
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
implementation 'com.github.p32929:AndroidAppLockscreen:1.2'
}
Steps to follow:
Activities
by LockscreenHandler
EasyLock.checkPassword(this);
in your MainActivity
's onCreate
method (or whichever activity starts at first)After that you can:
Step 1: * Extend all Activities
by LockscreenHandler
like this:
public class MainActivity extends LockscreenHandler {
// ............................................
}
Step 2: Add EasyLock.checkPassword(this);
in your MainActivity
's onCreate
method (or whichever activity starts at first) like this:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EasyLock.checkPassword(this);
}
EasyLock.setPassword();
EasyLock.setBackgroundColor();
EasyLock.checkPassword();
EasyLock.changePassword();
EasyLock.disablePassword();
EasyLock.forgotPassword()
with a new View.OnClickListener()
Check out the app in the repository for more info :) Enjoy...
MIT License
Copyright (c) 2018 Fayaz Bin Salam
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.