Password protect launch of android application

前端 未结 2 1607
挽巷
挽巷 2021-01-31 06:51

I\'m searching for a way to password protect my android application on launch, i.e. when launching/resuming an activity belonging to my apk-package a password dialog will be sho

2条回答
  •  无人及你
    2021-01-31 07:19

    Subclass Application, and set a variable in there on whether the next time something happens in your app, you should prompt a dialog or not.

    In your Activity, Service, etc... using the Context you receive, get your Application, if the var is set to show the dialog, from your Activity code (meaning the UI Thread) show your dialog. You'd probably put this in your onResume code.

    In onPause, set the variable to show it next time. In onResume, set it as false.

提交回复
热议问题