Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7827849
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T10:04:04+00:00 2026-06-02T10:04:04+00:00

I have to give a dialog when my activity is launched at first time.

  • 0

I have to give a dialog when my activity is launched at first time.
So I do that in my

public void onCreate(Bundle savedInstanceState)

and use

protected void onSaveInstanceState (Bundle outState) 

to save the time of my launch. I notice that OS create a new “Bundle outState” instead of using the old one. And I can not debug the the date when re Oncreate.

My question:

  1. The date I saved in onSaveInstanceState , could be really read by Oncreate? And how to debug?

  2. Could I just use a private member vary to save the state and without being deleted by OS when the process is killed by OS.

Thank you for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T10:04:08+00:00Added an answer on June 2, 2026 at 10:04 am

    Bundle cannot be used to carry the data across application restarts.

    You’d better save your data to the more permanent storage, like SharedPreferences, put this code in onCreate():

    SharedPreferences prefs;
    prefs = getSharedPreferences( "preferences", Context.MODE_PRIVATE);
    long last_run_time = prefs.getLong( 'last_run', 0 );
    if( last_run_time == 0 ) { // zero means your app has never been run
        // display dialog, this is the first time!
        ....
        // this saves current system time to prevent your dialog being seen again
        prefs.edit().putLong( 'last_run', system.currentTimeMillis() ).commit();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a service that give me a date time string in the following
Give that I have written a JPanel with many different components on it, is
I have some questions about android ui api. Give a example, that I want
I have functionality where I dynamically create Dialog. Some time I require Modal or
I have an activity that starts on demand of the user. The user can
I have a large activity that contains 100 or more buttons. But it's working
I have a jQuery dialog box on my website. I give a div on
In my application I have a Seekbar that is shown in a dialog. Now
I have a mobile web app that displays a dialog box within a position:
I have a relatively simple layout that contains an EditText . The activity itself

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.