Lockscreen

🔒Security screen using fingerprint or pin code.
Alternatives To Lockscreen
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Python Validity556
9 months ago74mitPython
Validity fingerprint sensor prototype
Xamarin Fingerprint402178a year ago47May 04, 202246ms-plC#
Xamarin and MvvMCross plugin for authenticate a user via fingerprint sensor
Rxfingerprint370
4 years ago28apache-2.0Java
Android Fingerprint authentication and encryption with RxJava
Adafruit Fingerprint Sensor Library330
7 months ago11otherC++
Arduino library for interfacing to the fingerprint sensor in the Adafruit shop
Fingerprint2sleep244
a year ago31Kotlin
Perform quick actions via tap fingerprint sensor.
Validity91212
4 years ago6bsd-3-clausePython
Reverse engineering the Validity 138a:0091 fingerprint sensor (Dell XPS 15/13 2016-2017 9X50 and 9X60)
Pyfingerprint146
2 years ago2October 31, 201914otherPython
Python library for ZhianTec fingerprint sensors (e.g. ZFM-20, ZFM-60)
Libfprint117
3 years ago6lgpl-2.1C
libfrpint driver for a family of Elantech fingerprint sensors
Goodix9280
3 years ago
Project aiming to reverse engineer Dell XPS 9570 fingerprint sensor (27c6:5395)
Droidid78
6 years ago8gpl-3.0Objective-C
DroidID - Unlock your Mac using your Android phone's fingerprint sensor!
Alternatives To Lockscreen
Select To Compare


Alternative Project Comparisons
Readme

Lock Screen

Android Arsenal

Security screen using fingerprint or pin code.

Screens

Some Android devices do not have a fingerprint sensor. It is used for two different devices. For those with fingerprint sensors and those without.

For phones that do not have a fingerprint sensor For devices with a fingerprint sensor Fingerprint sensor for those who want to use the pincode.

Usage

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

  dependencies {
	        implementation 'com.github.fevziomurtekin:lockscreen:0.1.1'
	  }
	}

Include in the activity

public class MainActivity extends LookScreen {

  @Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      this.setPass("1234");
      this.setDigitCount(4);
      this.setIntent(new Intent(this,SuccesActivity.class));
      this.setDigitCount(4);
      this.setTitle("YOUR TITLE MESSAGE");
      this.setTitleSize(15f);
      this.setTitleColor(getResources().getColor(R.color.black));
      this.setMessage("YOUR MESSAGE");
      this.setMessageSize(14f);
      this.setMessageColor(getResources().getColor(R.color.black));
      this.setError("YOUR ERROR MESSAGE");
      this.setErrorSize(14f);
      this.setErrorColor(getResources().getColor(R.color.red));
  }
}

Attributes

Attribute Description
title Default text, "Enter your password. "
titleSize The size in sp of the title text size (by default 15sp)
titleColor The color in int of the title text color (R.color.black)
message The value in string of the message items (by default "Log in with your password or fingerprint reader.")
messageSize The size in sp of the message text size (by default 14sp)
messageColor The color in int of the title text color (R.color.black)
error The value in string of the error items (by default "You entered an incorrect password. Please try again.")
errorSize The size in sp of the title text size (by default 14sp)
errorColor The color in int of the title text color (R.color.red)
intent It is for transferring to another class when successfully logged in
pass The value in string of the password items (by default "1234")

License

Copyright 2018 Fevzi Ömür Tekin

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.
Popular Fingerprint Projects
Popular Sensor Projects
Popular Security Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Sensor
Fingerprint
Lockscreen
Fingerprint Authentication