Merge "usb: Don't show the notification when no USB device is connected"
This commit is contained in:
@@ -508,6 +508,7 @@ public class UsbDeviceManager implements ActivityTaskManagerInternal.ScreenObser
|
|||||||
// current USB state
|
// current USB state
|
||||||
private boolean mHostConnected;
|
private boolean mHostConnected;
|
||||||
private boolean mUsbAccessoryConnected;
|
private boolean mUsbAccessoryConnected;
|
||||||
|
private boolean mInHostModeWithNoAccessoryConnected;
|
||||||
private boolean mSourcePower;
|
private boolean mSourcePower;
|
||||||
private boolean mSinkPower;
|
private boolean mSinkPower;
|
||||||
private boolean mConfigured;
|
private boolean mConfigured;
|
||||||
@@ -959,6 +960,17 @@ public class UsbDeviceManager implements ActivityTaskManagerInternal.ScreenObser
|
|||||||
mSupportsAllCombinations = false;
|
mSupportsAllCombinations = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mHostConnected) {
|
||||||
|
if (!mUsbAccessoryConnected) {
|
||||||
|
mInHostModeWithNoAccessoryConnected = true;
|
||||||
|
} else {
|
||||||
|
mInHostModeWithNoAccessoryConnected = false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// if not in host mode, reset value to false
|
||||||
|
mInHostModeWithNoAccessoryConnected = false;
|
||||||
|
}
|
||||||
|
|
||||||
mAudioAccessorySupported = port.isModeSupported(MODE_AUDIO_ACCESSORY);
|
mAudioAccessorySupported = port.isModeSupported(MODE_AUDIO_ACCESSORY);
|
||||||
|
|
||||||
args.recycle();
|
args.recycle();
|
||||||
@@ -983,6 +995,12 @@ public class UsbDeviceManager implements ActivityTaskManagerInternal.ScreenObser
|
|||||||
Slog.i(TAG, "HOST_STATE connected:" + mUsbAccessoryConnected);
|
Slog.i(TAG, "HOST_STATE connected:" + mUsbAccessoryConnected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!devices.hasNext()) {
|
||||||
|
mInHostModeWithNoAccessoryConnected = true;
|
||||||
|
} else {
|
||||||
|
mInHostModeWithNoAccessoryConnected = false;
|
||||||
|
}
|
||||||
|
|
||||||
mHideUsbNotification = false;
|
mHideUsbNotification = false;
|
||||||
while (devices.hasNext()) {
|
while (devices.hasNext()) {
|
||||||
Map.Entry pair = (Map.Entry) devices.next();
|
Map.Entry pair = (Map.Entry) devices.next();
|
||||||
@@ -1192,7 +1210,8 @@ public class UsbDeviceManager implements ActivityTaskManagerInternal.ScreenObser
|
|||||||
|
|
||||||
// Dont show the notification when connected to a USB peripheral
|
// Dont show the notification when connected to a USB peripheral
|
||||||
// and the link does not support PR_SWAP and DR_SWAP
|
// and the link does not support PR_SWAP and DR_SWAP
|
||||||
if (mHideUsbNotification && !mSupportsAllCombinations) {
|
if ((mHideUsbNotification || mInHostModeWithNoAccessoryConnected)
|
||||||
|
&& !mSupportsAllCombinations) {
|
||||||
if (mUsbNotificationId != 0) {
|
if (mUsbNotificationId != 0) {
|
||||||
mNotificationManager.cancelAsUser(null, mUsbNotificationId,
|
mNotificationManager.cancelAsUser(null, mUsbNotificationId,
|
||||||
UserHandle.ALL);
|
UserHandle.ALL);
|
||||||
|
|||||||
Reference in New Issue
Block a user