How to display a one time welcome screen?

前端 未结 3 1361
太阳男子
太阳男子 2020-12-01 03:19

In my android app, I need to design a Welcome Screen which will be shown to the user only once after the app is installed and opened. The app in question is a database drive

3条回答
  •  爱一瞬间的悲伤
    2020-12-01 03:40

    Save a flag in the Preferences when you start up the application, after you've done the welcome screen stuff. Check for this flag before you show the welcome screen. If the flag is present (in other words, if it's not the first time), don't show it.

提交回复
热议问题