Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +3 −1 Original line number Diff line number Diff line Loading @@ -1610,7 +1610,8 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, } Entry entry = mNotificationData.get(key); if (entry != null && mRemoteInputController.isRemoteInputActive(entry)) { if (entry != null && mRemoteInputController.isRemoteInputActive(entry) && (entry.row != null && !entry.row.isDismissed())) { mLatestRankingMap = ranking; mRemoteInputEntriesToRemoveOnCollapse.add(entry); return; Loading Loading @@ -2535,6 +2536,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, mStatusBarWindowManager.setHeadsUpShowing(false); mHeadsUpManager.setHeadsUpGoingAway(false); } removeRemoteInputEntriesKeptUntilCollapsed(); } }); } Loading packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java +1 −1 Original line number Diff line number Diff line Loading @@ -348,7 +348,7 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene } public boolean isActive() { return mEditText.isFocused(); return mEditText.isFocused() && mEditText.isEnabled(); } public void stealFocusFrom(RemoteInputView other) { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +3 −1 Original line number Diff line number Diff line Loading @@ -1610,7 +1610,8 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, } Entry entry = mNotificationData.get(key); if (entry != null && mRemoteInputController.isRemoteInputActive(entry)) { if (entry != null && mRemoteInputController.isRemoteInputActive(entry) && (entry.row != null && !entry.row.isDismissed())) { mLatestRankingMap = ranking; mRemoteInputEntriesToRemoveOnCollapse.add(entry); return; Loading Loading @@ -2535,6 +2536,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, mStatusBarWindowManager.setHeadsUpShowing(false); mHeadsUpManager.setHeadsUpGoingAway(false); } removeRemoteInputEntriesKeptUntilCollapsed(); } }); } Loading
packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java +1 −1 Original line number Diff line number Diff line Loading @@ -348,7 +348,7 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene } public boolean isActive() { return mEditText.isFocused(); return mEditText.isFocused() && mEditText.isEnabled(); } public void stealFocusFrom(RemoteInputView other) { Loading