rakoonic,
By default, the top status bar is overlaid on top of your app. It has always worked this way.
If you set the “coronaWindowMovesWhenKeyboardAppears” to true in your “build.settings” file, then that the one setting that will force the top status bar to *not* be overlaid on top of your app. It’ll shorten the height of your app instead, just under the status bar. It’s a consequence of the build setting’s equivalent native Android setting, but in this case, that might be the behavior that you want.
I believe the Android devices that show the copy/past options docked to the top of the screen are usually forked Android OSes that don’t follow the rules. It’s technically a bug with that forked OS because it’s not rendering the clipboard under the status bar, because we have no control over it. So, you could use the “coronaWindowMovesWhenKeyboardAppears” build setting, or perhaps the other way to handle it is to hide the status bar when an input field gains focus. I’m not sure what else to recommend.