1

When users device has some locking pattern on android or password, can my application make use of it? Does android allow my application to have system locking enabled ? Which APIs of Android do that purpose?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Prashant
  • 4,474
  • 8
  • 34
  • 82

1 Answers1

0

You can do that by this class: https://developer.android.com/reference/android/app/KeyguardManager.html#createConfirmDeviceCredentialIntent(java.lang.CharSequence,%20java.lang.CharSequence) Did not understand it exactly but before using your application or accessing certain part of your application can be authenticated with phone lock screen, using this class

Calvin
  • 617
  • 1
  • 12
  • 34