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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:50:10+00:00 2026-05-30T07:50:10+00:00

In my android application i want to make a feedback dialog that will show

  • 0

In my android application i want to make a feedback dialog that will show the second time the application is started.
How can i do this ?
Can i do it by variables in a PreferenceActivity. If the a variable in the preference activity is edit by feks ++; will this be the result of the variable next time the app is started ?

Edit:
I dont get any of the suggested answers to work, can i create a text file on the ext or internal store the first time the app is started and check if the file exists ?

  • 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-30T07:50:12+00:00Added an answer on May 30, 2026 at 7:50 am

    Use SharedPreferences:

    public class MainActivity extends Activity {
      private SharedPreferences mSharedPrefs;
      private static final String PREF_LAUNCH_COUNTER = "launch_counter";
      private int mLaunchCount = 0;
      @Override
      public void onCreate(Bundle savedState) {
        mSharedPrefs = getPreferences(Context.MODE_PRIVATE);
        if (savedState != null) {
          mLaunchCount = savedState.getInt(PREF_LAUNCH_COUNTER, 1);
        } else {
          mLaunchCount = mSharedPrefs.getInt(PREF_LAUNCH_COUNTER, 1);
          if(mLaunchCount > 1) {
            //code to handle when the app was launched after the first time.
          } else {
            //code for when the app was launched for the first time..
          }
          mSharedPrefs.edit().putInt(PREF_LAUNCH_COUNTER, mLaunchCount++);
    
        }
    
      }
      @Override
      protected void onSaveInstanceState(Bundle outState) {
         outState.putInt(PREF_LAUNCH_COUNTER, mLaunchCount);
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make my android application as executable file that can install in
I want to make an android application that shows a listing of applications (downloaded
I want to create an application for Android that will be able to scan
I see tutorials that show you how to make a real android application with
Background: I have started Android recently. I want to make an application for Android
I want to make address book application in android which can have Name,phone No,
i make Android application that can communicate to bluetooth printer for printing some text,
I have a very precise question: I want to make an android application that
I want to make some changes to the stock Mms Android application and install
I'm writing an Android application that I want to be able to send requests

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.