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 4106990
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T21:26:51+00:00 2026-05-20T21:26:51+00:00

I’m trying to discern, during onStart(), whether my Activity was started from the home

  • 0

I’m trying to discern, during onStart(), whether my Activity was started from the home screen or “back” from another activity.

getIntent().hasCategory("android.intent.category.LAUNCHER")

does not work, as the activity’s intent stays the same.

I want to display a dialog box when the main activity starts, but I don’t want it popping up every time a user goes back to the main activity after visiting another.

Is there any way to accomplish this?

Thanks for any help!
-Chase

  • 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-05-20T21:26:51+00:00Added an answer on May 20, 2026 at 9:26 pm

    Yes it is possible to launch a dialog box only when the main activity starts the first time, but I save state on a soft kill. So if you save state in onSaveInstanceState on a soft kill you can look for a null bundle in onCreate. If the bundle is null, then this is the first launch. If the bundle is not null, then you are returning from a soft kill. If you save state in onRetainNonConfigurationState then the code looks like:

        // RESTORE STATE HERE
        // Save state in onStop (prefs) and onRetainNonConfigurationInstance (ConfuseTextState)
        state= (ConfuseTextState)getLastNonConfigurationInstance();
        if (state != null) {  // at least second pass, get non view state from onRetainNonConfigurationInstance
            try {               
                this.isShowCharCount= state.isShowCharCount;
                    this.timeExpire= state.timeExpire;
                    this.timeoutType= state.timeoutType;
                    this.isValidKey= state.isValidKey;
                    this.password= state.password;
                    this.isAutoLaunch= state.isAutoLaunch;
                    //Log.d(TAG,"restoredStateFromLastConfiguration");
            }
            catch(Exception e){
                Log.d(Utilities.TAG,"FailedToRestoreState",e);
            }
        }
        else { // first pass, get saved state from preferences on first pass if they exist
            // Restore preferences (8) on hard kill when USER hit back and killed us
            SharedPreferences prefs = getPreferences(MODE_PRIVATE); // singleton
            if (prefs  != null){...
            }   // else state is from xml files and default instance values
            // SUPPORT EASY LAUNCH
            if (isAutoLaunch){ // launch on first show only
                this.showDialog(DIALOG_EASY_LAUNCH); //<== SHOW YOUR ALERT HERE!
            }
        } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am currently running into a problem where an element is coming back from
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a text area in my form which accepts all possible characters from

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.