Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Android what you mean by docking state

In Intent,there is a constant named ACTION_DOCK_EVENT

Added in API level 5
Broadcast Action: A sticky broadcast for changes in the physical docking state of the device.

What do you mean by docking state?

like image 376
Aada Avatar asked Oct 21 '22 11:10

Aada


1 Answers

Android devices can be docked into several different kinds of dock devices . These include car or home docks and digital versus analog docks. So when a dock of the device is changed then it throws an intent of ACTION_DOCK_EVENT

If a device is docked, it can be docked in any one of four different type of dock:

  • Car
  • Desk
  • Low-End (Analog) Desk
  • High-End (Digital) Desk

resource here

like image 87
stinepike Avatar answered Oct 24 '22 05:10

stinepike