Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can we receive notification if user connected there phone through USB cable.

share|improve this question

3 Answers

up vote 2 down vote accepted

Ajay,

I wasn't able to find anything specific to just "USB Connected," but there are a few Broadcast Actions that may be of interest in this case depending on what you are trying to accomplish:

  • ACTION_MEDIA_SHARED: External media is unmounted because it is being shared via USB mass storage.
  • ACTION_UMS_CONNECTED: The device has entered USB Mass Storage mode. This is used mainly for the USB Settings panel.
  • ACTION_UMS_DISCONNECTED: The device has exited USB Mass Storage mode. This is used mainly for the USB Settings panel.

There doesn't seem to be a Broadcast Action specific to USB simply being plugged in, you could also try doing something with:

But this would go off for both USB connected to a computer and USB connect ONLY to a power source...

Interestingly, I also found this LINK simply stating that there was no Broadcast Action for "USB Connected".

You may be out of luck in this case :-\

share|improve this answer
Thanks willylate, at least i get a direction to do research an d it is very useful. – Ajay Singh Apr 2 '11 at 12:25
2  
good luck. if you manage to find an undocumented method to receiving a USB connected action, please report your findings in your original question. – William Tate Apr 2 '11 at 12:26
Seems like ACTION_UMS_CONNECTED has stopped being sent in later versions of Android (at least from ICS). However, from Gingerbread on you can listen for "android.hardware.usb.action.USB_STATE", this is broadcast whenever the USB connection is made, at least as far as my experimentation goes. There's a boolean extra, "connected", to tell you whether it's connected or disconnected. So if you listen for both that and ACTION_UMS_CONNECTED etc, your code should work on all versions. – chrisdowney Jun 22 '12 at 21:46

Actually there is one broadcast event; if you turned on Debug in your application settings, your will see a bug on your notification bar when you plugged usb. Following is the sample how it works;

public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    // UsbManager.ACTION_USB_STATE -> "android.hardware.usb.action.USB_STATE" actually
    if (action.equals(UsbManager.ACTION_USB_STATE)) {
        Bundle extras = intent.getExtras();
        // UsbManager.USB_CONNECTED -> "connected" actually
        usbConnected = extras.getBoolean(UsbManager.USB_CONNECTED);
        ...

You can find this at framework/base/service/java/com/android/server/NotificationManagerService.java. Hope this helps.

share|improve this answer

Since: API Level 5 An activity to run when device is inserted into a car dock. Used with ACTION_MAIN to launch an activity. For more information, see UiModeManager. Constant Value: "android.intent.category.CAR_DOCK" public static final String CATEGORY_CAR_MODE

Since: API Level 8 Used to indicate that the activity can be used in a car environment. Constant Value: "android.intent.category.CAR_MODE"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.