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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:57:22+00:00 2026-05-25T05:57:22+00:00

I have a main activity with launch mode set as singleTask. When I bring

  • 0

I have a main activity with launch mode set as “singleTask”. When I bring it to the foreground and the onNewIntent method is called, it runs an AsyncTask containing a while loop which reads lines from a text file.

Part way into this loop, the value of one of my integer variables changes to 0. This doesn’t always happen in the same stage in the loop cycle and the loop has nothing to do with this variable at all so I don’t understand why this is happening.

Here’s an image that might better explain the problem:

https://i.stack.imgur.com/ogLQh.jpg

EDIT: Code as requested:

private class ReadFile extends AsyncTask<String, String, String> implements DialogInterface.OnCancelListener {

    protected void onPreExecute() {

        //Launch dialog
    }

    protected String doInBackground(String... path) {

        try {

            File f = new File(path[0]);
            FileInputStream in = new FileInputStream(f);
            InputStreamReader ir;
            ir = new InputStreamReader(in);

            BufferedReader br = new BufferedReader(ir);
            StringBuffer sb = new StringBuffer();
            String str = new String();              

            while ((str = br.readLine()) != null) {         

                Log.i("My Variable",Integer.toString(myVariable));

                sb.append(str);
                sb.append("\n\n");

            }

            br.close();
            myTextFile = sb.toString();

        } catch (IOException e) {
            e.printStackTrace();
        }

        return "";
    }

    protected void onProgressUpdate(String... progress) {

        //Nothing here

    }

    protected void onPostExecute(final String unusedString) {

        //Dismiss dialog

    }

    protected void onCancelled() {
        finish();
    }

    public void onCancel(DialogInterface dialog) {
        cancel(true);
    }
}
  • 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-25T05:57:23+00:00Added an answer on May 25, 2026 at 5:57 am

    myVariable seems to be changed from UI thread (activity thread). Try to add logging in each place where you modify myVariable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my main activity (with launchmode set as singleTask ), I have a TabHost
I have 3 classes in my example: Class A, the main activity. Class A
I have a widget that supposed to call an Activity of the main app
Say if I have a locationManager(LM) object in activity A, which is my main
I have main table called 'Employee' and another slave table called 'EmployeeTypes' that has
i have a table called category in which i have main category ids and
I have 2 classes within same package. Both classes have main method in them.
I have an app that has a list as its main activity and then
I am crashing trying to launch a sub-activity. I have a small app to
In my Android app, I have a main activity that serves as an entry

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.