如何锁定我的 Android 应用程序的某些功能
我正在做一个 Android 应用程序,我想为每个用户暂时锁定一些功能。
我想要的是在有人执行预定义任务(例如在 Facebook 上分享)之前锁定要使用的 1 个活动,然后我才希望他们查看该活动。
我怎样才能实现这个目标?它是为了应用,就像游戏锁定关卡一样。
I was doing an android app and I want to lock some feature temporally for each user.
What I want is to lock say 1 activity to be used before someone performs a predefined task say share on facebook, only then I want them to view the activity.
How can I achieve this? It is for application, just like games lock the level.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该创建一个应用程序/用户配置文件并将其保存在数据库或共享偏好。
You should make an application/user profile and save it in a database or in the shared preferences.
您可以简单地在打开要锁定的活动之前检查是否已执行某个任务。
you could simply check if a certain task has been performed prior to opening the activity you want locked.