Avoid transparent background below the navigation bar

With some vendors, the navigation bar was transparent and the keyboard
background was not drawn behind it.
This commit is contained in:
Jules Aguillon
2025-07-02 22:34:48 +02:00
parent 957dbdc7fe
commit cd1b4beb10

View File

@ -316,6 +316,7 @@ public class Keyboard2 extends InputMethodService
// Allow to draw behind system bars
wattrs.setFitInsetsTypes(0);
window.setDecorFitsSystemWindows(false);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
}
updateLayoutHeightOf(window, ViewGroup.LayoutParams.MATCH_PARENT);
final View inputArea = window.findViewById(android.R.id.inputArea);