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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T00:47:49+00:00 2026-06-13T00:47:49+00:00

I want call the following portion of code every second?? I have tried the

  • 0

I want call the following portion of code every second??
I have tried the following-
But don’t know how to call every second??

How can I keep on calling new checkNWConnectivity().execute(“Test”); everysecond and from where to call in my android program???

private class checkNWConnectivity extends AsyncTask<String, Integer, String> {
    @Override
    protected String doInBackground(String... params) {


                ConnectivityManager manager = (ConnectivityManager)getSystemService(MainActivity.CONNECTIVITY_SERVICE);

                //  3G confirm
                Boolean is3g = manager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).isConnectedOrConnecting();

                // wifi confirm 
                Boolean isWifi = manager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).isConnectedOrConnecting();

                if(is3g){
                    tvNWConnectivity.setText("   Connected to 3G");
                }else if(isWifi){
                    tvNWConnectivity.setText("   Connected to wifi");
                }else{
                    String text = "   No Network Connectivity."+"\n" + "   Uploading will be resumed from streamlet "+countStreamletUploaded.toString();
                    tvNWConnectivity.setText(text);
                 }    


        return null;
    }

}

So my question is how to call it every second?
Actually I want to keep on running the portion of code in doInBackground(String… params) { … }

  • 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-13T00:47:51+00:00Added an answer on June 13, 2026 at 12:47 am

    You can use TimerTask, Timer and a Handler to do this:

     public void toCallAsynchronous() {
    
       TimerTask doAsynchronousTask;
       final Handler handler = new Handler();
       Timer timer = new Timer();
    
       doAsynchronousTask = new TimerTask() {
                @Override
                public void run() {
                    // TODO Auto-generated method stub
                    handler.post(new Runnable() {
                        public void run() {
                            try {
                              checkNWConnectivity performBackgroundTask = new checkNWConnectivity();
                              performBackgroundTask.execute();
    
                               } catch (Exception e) {
                                  // TODO Auto-generated catch block
                               }
    
                         }
                    });
                    timer.schedule(doAsynchronousTask, 0,30000); //put the time you want
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following views in my application. Basically I want to call show_house()
I have the following problem. I want to call a soubroutine for changing the
I have the following need: I want to call a js each time an
I want to call the following function from my managed code: short LS_LoadConfig(LS_ID SensorID,LPVARIANT
I have the following string: $str = methodA()->methodB()->methodC And i want to call that
I have the following Macro I want to call from within an AutoHotkey script
I have the following legacy VB6 function that I want to call from C#.
I have the following image button on the GridView and I want to call
I want to call AS function from JS. I have the following ActionScript 3
I have following function. I want to call this function when user click on

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.