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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:07:10+00:00 2026-06-09T18:07:10+00:00

using my Broadcast receiver, I’m setting a shared preference (BT_Device_connected), whenever a Bluetooth device

  • 0

using my Broadcast receiver, I’m setting a shared preference (BT_Device_connected), whenever a Bluetooth device is connected.

now, the app i’m writing turns on Bluetooth automatically when you plug in the phone (yes, i know it’s not recommended. focus! ;).

what i’m trying to do is wait 2 minutes after the phone has been plugged in, and check to see if during those two minutes the phone has connected to a Bluetooth Device (if BT_device_connected is true, it has, if false, it hasn’t).

so, i’m trying to launch a timer/handler from within one service, and wait 2 minutes, and then either launch a new service, or a method that will check if the device is connected.

and… i have to do all this in the Background, since none of this actually affects ui.

the glorious code i have, which doesn’t work, is as follows:

public void onDeviceConnectTimer(){

TimerTask wait;
final Handler handler = new Handler();
Timer t = new Timer();
wait = new TimerTask() {
        public void run() {
                handler.post(new Runnable() {
                        public void run() {
                            Intent serviceIntent = new Intent(CheckIfDeviceConnectService.class.getName());
                            getApplicationContext().startService(serviceIntent);
                         Log.d("TIMER", "Timer set off");
                        }
               });
        }};
    t.schedule(wait, initializeDate()); 
 }

What am I doing wrong, and is there a better way to do this?

  • 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-09T18:07:12+00:00Added an answer on June 9, 2026 at 6:07 pm

    Try using handler like this:

    final Handler handler = new Handler();
    Runnable myRunnable=new Runnable()
    {
    public void run()
      { 
        //Start sevice here.
    
      }
    };
    

    Now start runnable by:

    handler.postDelayed(myRunnable, 120000);
    

    This will start your service after 2 minutes.

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

Sidebar

Related Questions

I have some trouble while try using broadcast receiver. Target: I have three app
Using broadcast receiver, it's easy to find out whether now the phone is plugged
I am using sms broadcast receiver in my application. When i send first sms
I am using an broadcast receiver for Intent.ACTION_BATTERY_CHANGED. Rate at which I receive this
Hai i developed a application using broadcast receiver.I need to wake my Application always.so
I am trying to get all installed applications using intents and broadcast receiver ,
Hai am trying to get the gps location using BroadCast Receiver.its working fine,But i
I am using ACTION_DATE_CHANGED in my Broadcast Receiver, and android.intent.action.DATE_CHANGED in <receiver>...</receiver> in my
Can an activity be invoked using a BroadcastReceiver ? The onReceive for BroadCast receiver
In my application I am listening for following 3 intents by using broadcast receiver.

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.