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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:03:05+00:00 2026-06-18T10:03:05+00:00

I need to detect whether the plugged in wired headset has microphone or not.

  • 0

I need to detect whether the plugged in wired headset has microphone or not.

I can check if a headset is plugged in using isWiredHeadSetOn(), but for microphone does not seem to be such a method in AudioManager class.

I have found some suggestions using ACTION_HEADSET_PLUG, but I am interested to find out this information even if the headset has been plugged in before opening my application, this event won’t be fired during the lifetime of my app.

Any ideas regarding this issue? Thank you in advance.

  • 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-18T10:03:06+00:00Added an answer on June 18, 2026 at 10:03 am

    UPDATE:
    Go ahead and register ACTION_HEADSET_PLUG in your activity’s onResume().
    If user has ever plugged in/out her headset after boot-up, platform will deliver the latest state to your activity when it resumes.

    Following test code worked:

    package com.example.headsetplugtest;
    
    import android.app.Activity;
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.content.IntentFilter;
    import android.os.Bundle;
    import android.util.Log;
    
    public class HeadSetPlugIntentActivity extends Activity {
    
        private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                final String action = intent.getAction();
                if (Intent.ACTION_HEADSET_PLUG.equals(action)) {
                    Log.d("HeadSetPlugInTest", "state: " + intent.getIntExtra("state", -1));
                    Log.d("HeadSetPlugInTest", "microphone: " + intent.getIntExtra("microphone", -1));
                }
            }
        };
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
        }
    
        @Override
        protected void onResume() {
            super.onResume();
    
            IntentFilter filter = new IntentFilter(Intent.ACTION_HEADSET_PLUG);
            getApplicationContext().registerReceiver(mReceiver, filter);
        }
    
        @Override
        protected void onStop() {
            super.onStop();
    
            getApplicationContext().unregisterReceiver(mReceiver);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I detect whether or not an Image View has a picture in
I need to detect whether the user has pressed the dot key in the
I need a way to programatically detect whether the monitor is wide or not,
For my web app I need a way to detect whether the application has
I would like to detect whether the user has pressed Enter using jQuery. How
I need to detect whether either of two values are null, and if not,
I need to detect if the CSS transform property has changed using jQuery. In
I need to write a function that can detect whether a string input is
Using C++, I need to detect whether given path (file name) is absolute or
I need the code to use regular javascript to detect whether or not JQuery

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.