Merge "Disable FolderNameEditText on Taskbar" into sc-v2-dev

This commit is contained in:
TreeHugger Robot
2021-09-03 23:00:33 +00:00
committed by Android (Google) Code Review
3 changed files with 28 additions and 9 deletions

View File

@@ -216,6 +216,14 @@ public class TaskbarActivityContext extends ContextThemeWrapper implements Activ
return mViewCache;
}
@Override
public boolean supportsIme() {
// Currently we don't support IME because we have FLAG_NOT_FOCUSABLE. We can remove that
// flag when opening a floating view that needs IME (such as Folder), but then that means
// Taskbar will be below IME and thus users can't click the back button.
return false;
}
/**
* Sets a new data-source for this taskbar instance
*/